We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7083fa6 + f2c0d3f commit 30be166Copy full SHA for 30be166
action.yml
@@ -71,3 +71,7 @@ inputs:
71
increment:
72
description: "Manually specify the desired increment"
73
required: false
74
+ check_consistency:
75
+ default: false
76
+ description: "check consistency among versions defined in commitizen configuration and version_files"
77
+ required: false
entrypoint.sh
@@ -48,6 +48,9 @@ fi
48
if [[ $INPUT_INCREMENT ]]; then
49
CZ_CMD+=('--increment' "$INPUT_INCREMENT")
50
fi
51
+if [[ $INPUT_CHECK_CONSISTENCY ]]; then
52
+ CZ_CMD+=('--check-consistency')
53
+fi
54
if [[ $INPUT_CHANGELOG_INCREMENT_FILENAME ]]; then
55
CZ_CMD+=('--changelog-to-stdout')
56
echo "${CZ_CMD[@]}" ">$INPUT_CHANGELOG_INCREMENT_FILENAME"
0 commit comments