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 8f65be2 commit 2804289Copy full SHA for 2804289
.github/workflows/publish.yml
@@ -32,11 +32,27 @@ jobs:
32
with:
33
github-token: ${{ secrets.GITHUB_TOKEN }}
34
git-message: 'chore(release): {version}'
35
- preset: 'conventionalcommits'
+ preset: |
36
+ {
37
+ "name": "custom",
38
+ "types": [
39
+ {"type": "feat", "section": "Features"},
40
+ {"type": "fix", "section": "Bug Fixes"},
41
+ {"type": "chore", "section": "Maintenance"},
42
+ {"type": "docs", "section": "Documentation"},
43
+ {"type": "style", "section": "Styling"},
44
+ {"type": "refactor", "section": "Code Refactoring"},
45
+ {"type": "perf", "section": "Performance"},
46
+ {"type": "test", "section": "Testing"},
47
+ {"type": "ci", "section": "CI/CD"},
48
+ {"type": "build", "section": "Build System"}
49
+ ]
50
+ }
51
tag-prefix: 'v'
52
output-file: 'CHANGELOG.md'
53
skip-version-file: false
54
skip-commit: false
55
+ skip-on-empty: false
56
git-user-name: ${{ secrets.CHANGELOG_GIT_NAME }}
57
git-user-email: ${{ secrets.CHANGELOG_GIT_EMAIL }}
58
0 commit comments