Skip to content

Commit dedf599

Browse files
committed
ci: update release-drafter-config.yml
1 parent acbc45e commit dedf599

File tree

1 file changed

+39
-7
lines changed

1 file changed

+39
-7
lines changed

.github/release-drafter-config.yml

+39-7
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,63 @@
11
name-template: 'v$RESOLVED_VERSION 🌈'
22
tag-template: 'v$RESOLVED_VERSION'
3+
template: |
4+
## Changes
5+
$CHANGES
36
categories:
47
- title: '🚀 Features'
58
labels:
69
- 'feature'
710
- 'enhancement'
811
- title: '🐛 Bug Fixes'
912
labels:
10-
- 'fix'
11-
- 'bugfix'
1213
- 'bug'
1314
- title: '🧰 Maintenance'
1415
label: 'chore'
15-
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
16-
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
16+
- title: '📖 Documentation'
17+
label:
18+
- 'docs'
19+
- 'documentation'
20+
- title: '🆙 Dependency Updates'
21+
label: 'deps'
22+
1723
version-resolver:
1824
major:
1925
labels:
2026
- 'major'
27+
- 'breaking'
2128
minor:
2229
labels:
2330
- 'minor'
31+
- 'feature'
32+
- 'enhancement'
2433
patch:
2534
labels:
2635
- 'patch'
36+
- 'bug'
37+
- 'chore'
38+
- 'documentation'
39+
- 'docs'
40+
- 'deps'
2741
default: patch
28-
template: |
29-
## Changes
3042

31-
$CHANGES
43+
exclude-labels:
44+
- 'skip-changelog'
45+
46+
autolabeler:
47+
- label: 'documentation'
48+
files:
49+
- '*.md'
50+
branch:
51+
- '/docs{0,1}\/.+/'
52+
- label: 'bug'
53+
branch:
54+
- '/fix\/.+/'
55+
title:
56+
- '/fix/i'
57+
body:
58+
- '/Fixes:\s#[0-9]{1,4}/'
59+
- label: 'enhancement'
60+
branch:
61+
- '/feature\/.+/'
62+
titile:
63+
- '/feat/i'

0 commit comments

Comments
 (0)