From b42440c35b3e0dadada24feddd94c8d6cfdcd3ec Mon Sep 17 00:00:00 2001 From: David Byron <82477955+dbyron-sf@users.noreply.github.com> Date: Tue, 13 Sep 2022 13:28:41 -0700 Subject: [PATCH] fix(gha): fix syntax error in code that determines what repos to bump (#974) --- .github/workflows/bump_dependencies.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bump_dependencies.yml b/.github/workflows/bump_dependencies.yml index 71d99cfb1..16cc96065 100644 --- a/.github/workflows/bump_dependencies.yml +++ b/.github/workflows/bump_dependencies.yml @@ -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