Skip to content

Commit 84af909

Browse files
committed
chore: add release notes categorization config
Categorize auto-generated release notes to surface features and bug fixes above dependency updates.
1 parent e06146b commit 84af909

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Configuration for GitHub's auto-generated release notes.
2+
# See: https://docs.github.com/en/repositories/releasing-on-github/automatically-generated-release-notes
3+
4+
changelog:
5+
exclude:
6+
labels:
7+
- "duplicate"
8+
- "invalid"
9+
- "wontfix"
10+
- "stale"
11+
categories:
12+
- title: "Features"
13+
labels:
14+
- "enhancement"
15+
- title: "Bug Fixes"
16+
labels:
17+
- "bug"
18+
- title: "Documentation"
19+
labels:
20+
- "documentation"
21+
- title: "Testing"
22+
labels:
23+
- "testing"
24+
- title: "Dependencies"
25+
labels:
26+
- "dependencies"
27+
- title: "Other Changes"
28+
labels:
29+
- "*"

0 commit comments

Comments
 (0)