Skip to content

Commit

Permalink
fix(gha): Event branch doesn't match (#975)
Browse files Browse the repository at this point in the history
Somehow ended up with an extra space in the string to match.
  • Loading branch information
kskewes-sf authored Sep 13, 2022
1 parent b42440c commit 55dbe27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/bump_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
id: bumpdep_targets
run: |
REPOS=clouddriver,echo,front50,gate,igor,keel,orca
if [ "${{ github.event.client_payload.branch }}" == " origin/master" ]; then
if [ "${{ github.event.client_payload.branch }}" == " origin/master" ]; then
echo "on master branch, include halyard in bumpdeps target list"
REPOS+=",halyard"
fi
Expand Down

0 comments on commit 55dbe27

Please sign in to comment.