File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 1.0.9
2
+ current_version = 1.0.10
3
3
commit = True
4
4
tag = False
5
5
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,
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " scripts"
3
- version = " 1.0.9 "
3
+ version = " 1.0.10 "
4
4
description = " CICD Core Scripts"
5
5
authors = [
" B <[email protected] >" ]
6
6
license = " Apache 2.0"
@@ -71,5 +71,5 @@ ensure_newline_before_comments = true
71
71
rcfile = " .pylintrc"
72
72
73
73
[build-system ]
74
- requires = [" poetry-core>=1.0.9 " ]
74
+ requires = [" poetry-core>=1.0.10 " ]
75
75
build-backend = " poetry.core.masonry.api"
You can’t perform that action at this time.
0 commit comments