-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configuration for grouping PRs in release notes into categories
- Loading branch information
1 parent
9475cb2
commit d0731d6
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
changelog: | ||
categories: | ||
- title: '✨ Features' | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: '🚀 Performance' | ||
labels: | ||
- 'performance' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- 'hotfix' | ||
- title: '🧰 Maintenance' | ||
labels: | ||
- 'chore' | ||
- 'dependencies' | ||
- 'tests' | ||
- title: '📚️ Documentation' | ||
labels: | ||
- 'documentation' | ||
- title: 'Miscellaneous' | ||
labels: | ||
- '*' | ||
exclude: | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'performance' | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- 'hotfix' | ||
- 'chore' | ||
- 'dependencies' | ||
- 'tests' | ||
- 'documentation' |