We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5bf62b0 + 863a354 commit 4787c27Copy full SHA for 4787c27
action.yml
@@ -103,3 +103,6 @@ inputs:
103
actor:
104
description: "The account that will be used to perform git operations, defaults to the GITHUB_ACTOR"
105
required: false
106
+ manual_version:
107
+ description: "Manually specify the version to bump to"
108
+ required: false
entrypoint.sh
@@ -79,6 +79,9 @@ fi
79
if [[ $INPUT_GIT_REDIRECT_STDERR == 'true' ]]; then
80
CZ_CMD+=('--git-output-to-stderr')
81
fi
82
+if [[ $INPUT_MANUAL_VERSION ]]; then
83
+ CZ_CMD+=("$INPUT_MANUAL_VERSION")
84
+fi
85
if [[ $INPUT_CHANGELOG_INCREMENT_FILENAME ]]; then
86
CZ_CMD+=('--changelog-to-stdout')
87
echo "${CZ_CMD[@]}" ">$INPUT_CHANGELOG_INCREMENT_FILENAME"
0 commit comments