Skip to content

Commit 517d2fd

Browse files
Add Release Drafter configuration
1 parent 2fc91d6 commit 517d2fd

File tree

1 file changed

+60
-0
lines changed

1 file changed

+60
-0
lines changed

.github/release-drafter.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Configuration for Release Drafter: https://github.com/toolmantim/release-drafter
2+
name-template: $NEXT_MINOR_VERSION
3+
tag-template: $NEXT_MINOR_VERSION
4+
5+
# Emoji reference: https://gitmoji.carloscuesta.me/
6+
categories:
7+
- title: 💥 Breaking changes
8+
labels:
9+
- breaking
10+
- title: 🚀 New features and improvements
11+
labels:
12+
- enhancement
13+
- title: 🐛 Bug fixes
14+
labels:
15+
- bug
16+
- title: 📝 Documentation updates
17+
labels:
18+
- documentation
19+
- title: 🌐 Localization and translation
20+
labels:
21+
- localization
22+
- title: 🌐 Community-related changes
23+
labels:
24+
- community
25+
- title: 👻 Maintenance
26+
labels:
27+
- chore
28+
- maintenance
29+
- title: 🚦 Tests
30+
labels:
31+
- test
32+
- title: ✍ Other changes
33+
# Default label used by Dependabot
34+
- title: 📦 Dependency updates
35+
labels:
36+
- dependencies
37+
collapse-after: 15
38+
exclude-labels:
39+
- skip-changelog
40+
- invalid
41+
42+
template: |
43+
<!-- Optional: add a release summary here -->
44+
$CHANGES
45+
46+
47+
autolabeler:
48+
- label: 'documentation'
49+
files:
50+
- '*.md'
51+
branch:
52+
- '/docs{0,1}\/.+/'
53+
- label: 'bug'
54+
branch:
55+
- '/fix\/.+/'
56+
title:
57+
- '/fix/i'
58+
- label: 'enhancement'
59+
branch:
60+
- '/feature\/.+/'

0 commit comments

Comments
 (0)