From 4529d6dceeae361b557a98a6034e184cd05b9ff7 Mon Sep 17 00:00:00 2001 From: Chris Llanwarne Date: Mon, 31 Jul 2023 10:40:13 -0400 Subject: [PATCH] Use correct tag variable for PR name and message --- .github/workflows/chart_update_on_merge.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/chart_update_on_merge.yml b/.github/workflows/chart_update_on_merge.yml index fa27f25583b..b00ab5e2766 100644 --- a/.github/workflows/chart_update_on_merge.yml +++ b/.github/workflows/chart_update_on_merge.yml @@ -126,10 +126,10 @@ jobs: exit 0; fi cd terra-helmfile - git checkout -b ${JIRA_ID}-cromwell-update-${HELM_NEW_TAG} + git checkout -b ${JIRA_ID}-cromwell-update-$CROMWELL_VERSION git config --global user.name "broadbot" git config --global user.email "broadbot@broadinstitute.org" - git commit -am "${JIRA_ID}: Auto update Cromwell to $HELM_NEW_TAG in workflows-app" - git push -u origin ${JIRA_ID}-cromwell-update-${HELM_NEW_TAG} - gh pr create --title "${JIRA_ID}: auto update Cromwell version to $HELM_NEW_TAG in workflows-app" --body "${JIRA_ID} helm chart update" --label "automerge" + git commit -am "${JIRA_ID}: Auto update Cromwell to $CROMWELL_VERSION in workflows-app" + git push -u origin ${JIRA_ID}-cromwell-update-$CROMWELL_VERSION + gh pr create --title "${JIRA_ID}: auto update Cromwell version to $CROMWELL_VERSION in workflows-app" --body "${JIRA_ID} helm chart update" --label "automerge" cd -