diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4e92cbf..a98f8ea 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.9 +current_version = 1.0.10 commit = True tag = False diff --git a/.github/workflows/version-controller.yml b/.github/workflows/version-controller.yml index 79fa3f8..5724989 100644 --- a/.github/workflows/version-controller.yml +++ b/.github/workflows/version-controller.yml @@ -104,8 +104,9 @@ jobs: script: | const head = '${{ steps.determine_branch.outputs.current_branch }}'; const base = '${{ steps.determine_branch.outputs.next_branch }}'; - const title = `from ${{ steps.determine_branch.outputs.current_branch }} - ${{ steps.get_commit.outputs.commit_message }} into ${{ steps.determine_branch.outputs.next_branch }}`; - const body = `Automatically created pull request for release ${{ steps.create_tag.outputs.tag_name }} into ${base} branch.`; + const version = '${{ steps.create_tag.outputs.tag_name }}'; + const title = `From ${head} → Bump version: ${version} into ${base}`; + const body = `Automatically created pull request for release ${version} into ${base} branch.`; const { data: existingPRs } = await github.rest.pulls.list({ owner: context.repo.owner, diff --git a/pyproject.toml b/pyproject.toml index cf6c1c2..66110ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "scripts" -version = "1.0.9" +version = "1.0.10" description = "CICD Core Scripts" authors = ["B "] license = "Apache 2.0" @@ -71,5 +71,5 @@ ensure_newline_before_comments = true rcfile = ".pylintrc" [build-system] -requires = ["poetry-core>=1.0.9"] +requires = ["poetry-core>=1.0.10"] build-backend = "poetry.core.masonry.api"