Skip to content

Commit 09e346d

Browse files
committed
chore(style): fixed bump year flow [patch candidate]
1 parent eba8996 commit 09e346d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/version-controller.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ jobs:
104104
script: |
105105
const head = '${{ steps.determine_branch.outputs.current_branch }}';
106106
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.`;
109110
110111
const { data: existingPRs } = await github.rest.pulls.list({
111112
owner: context.repo.owner,

0 commit comments

Comments
 (0)