File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,9 @@ jobs:
104
104
script : |
105
105
const head = '${{ steps.determine_branch.outputs.current_branch }}';
106
106
const base = '${{ steps.determine_branch.outputs.next_branch }}';
107
- const title = `from ${{ steps.determine_branch.outputs.current_branch }} - ${{ steps.get_commit.outputs.commit_message }} into ${{ steps.determine_branch.outputs.next_branch }}`;
108
- const body = `Automatically created pull request for release ${{ steps.create_tag.outputs.tag_name }} into ${base} branch.`;
107
+ const version = '${{ steps.create_tag.outputs.tag_name }}';
108
+ const title = `From ${head} → Bump version: ${version} into ${base}`;
109
+ const body = `Automatically created pull request for release ${version} into ${base} branch.`;
109
110
110
111
const { data: existingPRs } = await github.rest.pulls.list({
111
112
owner: context.repo.owner,
You can’t perform that action at this time.
0 commit comments