-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add GitHub release changelog configuration (#229)
This PR adds a GitHub release configuration, which should simplify changelog generation.
- Loading branch information
1 parent
dc2fff6
commit 5b2b850
Showing
2 changed files
with
43 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,10 @@ | ||
Fixes # | ||
|
||
### What Changed? | ||
<!-- Describe the changes made in this pull request --> | ||
|
||
### Reviewer Checklist | ||
|
||
- [ ] New features are tested and documented | ||
- [ ] PR has one of the `changelog-X` labels (if applies) | ||
- [ ] Code deprecates any old functionality before removing it |
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,33 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- ignore-for-release | ||
categories: | ||
# vulnerabilities | ||
- title: Security π | ||
labels: | ||
- changelog-security | ||
# new features | ||
- title: Added π | ||
labels: | ||
- changelog-added | ||
# changes in existing functionality | ||
- title: Changed π | ||
labels: | ||
- changelog-changed | ||
# soon-to-be removed features | ||
- title: Deprecated β οΈ | ||
labels: | ||
- changelog-deprecated | ||
# now removed features | ||
- title: Removed π | ||
labels: | ||
- changelog-removed | ||
# documentation was added or changed | ||
- title: Documentation π | ||
labels: | ||
- changelog-documentation | ||
|
||
- title: Other Changes | ||
labels: | ||
- "*" |