Skip to content

Commit f6a2325

Browse files
authored
Add release drafter (#64)
Signed-off-by: Benjamin Huo <[email protected]> Signed-off-by: Benjamin Huo <[email protected]>
1 parent 4c93345 commit f6a2325

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

β€Ž.github/release-drafter.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name-template: 'v$RESOLVED_VERSION'
2+
tag-template: 'v$RESOLVED_VERSION'
3+
template: |
4+
# What's Changed
5+
6+
$CHANGES
7+
8+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
9+
10+
categories:
11+
- title: 'πŸ’₯ Breaking'
12+
label: 'type: breaking'
13+
- title: '✨ New'
14+
label: 'type: feature'
15+
- title: 'πŸ› Bug Fixes'
16+
label: 'type: bug'
17+
- title: 'πŸ—οΈ Maintenance'
18+
label: 'type: maintenance'
19+
- title: 'πŸ”’ Security'
20+
label: 'type: security'
21+
- title: 'πŸ‘· CI/CD'
22+
label: 'type: cicd'
23+
- title: 'πŸ“ Documentation'
24+
label: 'type: docs'
25+
- title: 'Other changes'
26+
- title: '🏷️ Dependency Updates'
27+
label: 'type: dependencies'
28+
collapse-after: 5
29+
30+
version-resolver:
31+
major:
32+
labels:
33+
- 'type: breaking'
34+
minor:
35+
labels:
36+
- 'type: feature'
37+
patch:
38+
labels:
39+
- 'type: bug'
40+
- 'type: maintenance'
41+
- 'type: docs'
42+
- 'type: dependencies'
43+
- 'type: cicd'
44+
45+
exclude-labels:
46+
- 'skip-changelog'

0 commit comments

Comments
Β (0)