We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc6cf5 commit 1283233Copy full SHA for 1283233
.github/workflows/main.yml
@@ -51,6 +51,8 @@ jobs:
51
# Create release if in main branch
52
- name: commitizen
53
if: github.ref == 'refs/heads/main'
54
+ id: commitizen
55
+ continue-on-error: true
56
uses: commitizen-tools/[email protected]
57
with:
58
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -59,7 +61,7 @@ jobs:
59
61
extra_requirements: typing-extensions
60
62
63
- name: Create GitHub release
- if: github.ref == 'refs/heads/main'
64
+ if: github.ref == 'refs/heads/main' && steps.commitizen.outcome == 'success'
65
uses: softprops/action-gh-release@v1
66
67
body_path: body.md
0 commit comments