We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 630b840 commit 8f9b193Copy full SHA for 8f9b193
1 file changed
.github/workflows/release.yaml
@@ -60,8 +60,11 @@ jobs:
60
git config --global user.email "$USER_EMAIL"
61
git config --list --global # For debug purposes.
62
63
+ # In some cases a user may merge commits that don't cause a version bump, which causes commitizen
64
+ # to fail with error code 21 (NoneIncrementExit). Thus we silence that particular error to avoid
65
+ # failing this job: https://commitizen-tools.github.io/commitizen/bump/#avoid-raising-errors
66
- name: Create changelog and bump
- run: cz bump --changelog --yes
67
+ run: cz --no-raise 21 bump --changelog --yes
68
69
- name: Push the release
70
run: |
0 commit comments