File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -515,13 +515,13 @@ jobs:
515515 if [ -n "$EXISTING_PR" ]; then
516516 echo "PR #$EXISTING_PR already exists, updating it"
517517 gh pr edit "$EXISTING_PR" \
518- --title "[${{ github.ref_name }} ] ${{ steps.commit_msg.outputs.commit_subject }}" \
518+ --title "[$BASE_BRANCH ] ${{ steps.commit_msg.outputs.commit_subject }}" \
519519 --body-file pr_body.md
520520 else
521521 echo "Creating new PR from ${{ github.ref_name }} to $BASE_BRANCH"
522522 gh pr create \
523523 --base "$BASE_BRANCH" \
524524 --head "${{ github.ref_name }}" \
525- --title "[${{ github.ref_name }} ] ${{ steps.commit_msg.outputs.commit_subject }}" \
525+ --title "[$BASE_BRANCH ] ${{ steps.commit_msg.outputs.commit_subject }}" \
526526 --body-file pr_body.md
527527 fi
You can’t perform that action at this time.
0 commit comments