Skip to content

Commit

Permalink
Use correct tag variable for PR name and message
Browse files Browse the repository at this point in the history
  • Loading branch information
cjllanwarne committed Jul 31, 2023
1 parent 102cc15 commit 5dcf428
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/chart_update_on_merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 -

0 comments on commit 5dcf428

Please sign in to comment.