Skip to content

Commit b33e6f9

Browse files
authored
From dev → Bump version: v1.0.10-dev into test (#17)
Automatically created pull request for release v1.0.10-dev into test branch.
2 parents 1125b6e + d8fdead commit b33e6f9

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.9
2+
current_version = 1.0.10
33
commit = True
44
tag = False
55

.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,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "scripts"
3-
version = "1.0.9"
3+
version = "1.0.10"
44
description = "CICD Core Scripts"
55
authors = ["B <[email protected]>"]
66
license = "Apache 2.0"
@@ -71,5 +71,5 @@ ensure_newline_before_comments = true
7171
rcfile = ".pylintrc"
7272

7373
[build-system]
74-
requires = ["poetry-core>=1.0.9"]
74+
requires = ["poetry-core>=1.0.10"]
7575
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)