We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2e8226b + dd4c0b4 commit 151de13Copy full SHA for 151de13
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
@@ -108,6 +108,10 @@ else
108
ACTOR=$GITHUB_ACTOR
109
fi
110
111
+if [[ $INPUT_CONFIG ]]; then
112
+ CZ_CMD+=("--config ${CONFIG}")
113
+fi
114
+
115
REV="$(cz version --project)"
116
if [[ $REV == "$PREV_REV" ]]; then
117
INPUT_PUSH='false'
0 commit comments