We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e8226b commit 40d941aCopy full SHA for 40d941a
action.yml
@@ -122,3 +122,6 @@ inputs:
122
manual_version:
123
description: "Manually specify the version to bump to"
124
required: false
125
+ config:
126
+ description: "Manually specify the config file to use"
127
+ required: false
entrypoint.sh
@@ -51,6 +51,11 @@ echo "previous_version_minor=${PREV_REV_MINOR}" >>"$GITHUB_OUTPUT"
51
52
53
CZ_CMD=('cz')
54
+
55
+if [[ $INPUT_CONFIG ]]; then
56
+ CZ_CMD+=('--config' "$INPUT_CONFIG")
57
+fi
58
59
if [[ $INPUT_DEBUG == 'true' ]]; then
60
CZ_CMD+=('--debug')
61
fi
0 commit comments