Skip to content

Commit

Permalink
fix(gha): fix syntax error in code that determines what repos to bump (
Browse files Browse the repository at this point in the history
  • Loading branch information
dbyron-sf committed Sep 13, 2022
1 parent 3fc1002 commit b42440c
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 b42440c

Please sign in to comment.