Skip to content

Commit 4787c27

Browse files
authored
Merge pull request #99 from ckagerer/feature/support-for-manual-version
feat: add support for manual version bumping
2 parents 5bf62b0 + 863a354 commit 4787c27

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

action.yml

+3
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,6 @@ inputs:
103103
actor:
104104
description: "The account that will be used to perform git operations, defaults to the GITHUB_ACTOR"
105105
required: false
106+
manual_version:
107+
description: "Manually specify the version to bump to"
108+
required: false

entrypoint.sh

+3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ fi
7979
if [[ $INPUT_GIT_REDIRECT_STDERR == 'true' ]]; then
8080
CZ_CMD+=('--git-output-to-stderr')
8181
fi
82+
if [[ $INPUT_MANUAL_VERSION ]]; then
83+
CZ_CMD+=("$INPUT_MANUAL_VERSION")
84+
fi
8285
if [[ $INPUT_CHANGELOG_INCREMENT_FILENAME ]]; then
8386
CZ_CMD+=('--changelog-to-stdout')
8487
echo "${CZ_CMD[@]}" ">$INPUT_CHANGELOG_INCREMENT_FILENAME"

0 commit comments

Comments
 (0)