We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b1fd2 commit ab619acCopy full SHA for ab619ac
1 file changed
.github/workflows/release.yaml
@@ -65,8 +65,10 @@ jobs:
65
# In some cases a user may merge commits that don't cause a version bump, which causes commitizen
66
# to fail with error code 21 (NoneIncrementExit). Thus we silence that particular error to avoid
67
# failing this job: https://commitizen-tools.github.io/commitizen/bump/#avoid-raising-errors
68
+ # Furthermore, if the version strings have inconsistent versions then `cz` and CI fail such that
69
+ # the issue can be inspected and fixed.
70
- name: Create changelog and bump
- run: cz --no-raise 21 bump --changelog --yes
71
+ run: cz --no-raise 21 bump --changelog --check-consistency --yes
72
73
- name: Push the release
74
run: |
0 commit comments