Skip to content

Commit eabe0ba

Browse files
authored
Add release drafter configuration file
1 parent 06c64bb commit eabe0ba

1 file changed

Lines changed: 72 additions & 0 deletions

File tree

.github/release-drafter.yml

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name-template: '$RESOLVED_VERSION'
2+
tag-template: '$RESOLVED_VERSION'
3+
categories:
4+
- title: '❗ Breaking Changes:'
5+
labels:
6+
- '❗ Breaking Change'
7+
- title: '🚀 New Features:'
8+
labels:
9+
- '✏️ Feature'
10+
- title: '🐛 Fixes:'
11+
labels:
12+
- '☢️ Bug'
13+
- title: '📚 Documentation:'
14+
labels:
15+
- '📒 Documentation'
16+
- title: '🧹 Updates:'
17+
labels:
18+
- '🧹 Updates'
19+
- title: '🤖 Dependencies:'
20+
labels:
21+
- '🤖 Dependencies'
22+
change-template: '- $TITLE (#$NUMBER)'
23+
change-title-escapes: '\<*_&'
24+
exclude-contributors:
25+
- dependabot
26+
- dependabot[bot]
27+
version-resolver:
28+
major:
29+
labels:
30+
- 'major'
31+
minor:
32+
labels:
33+
- 'minor'
34+
- '❗ Breaking Change'
35+
- '✏️ Feature'
36+
patch:
37+
labels:
38+
- 'patch'
39+
- '📒 Documentation'
40+
- '☢️ Bug'
41+
- '🤖 Dependencies'
42+
- '🧹 Updates'
43+
default: patch
44+
template: |
45+
$CHANGES
46+
47+
## 🐳 Docker Images
48+
- `ghcr.io/$OWNER/$REPOSITORY:latest`
49+
- `ghcr.io/$OWNER/$REPOSITORY:$RESOLVED_VERSION`
50+
51+
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...$RESOLVED_VERSION
52+
53+
Thanks to $CONTRIBUTORS for making this release possible.
54+
55+
autolabeler:
56+
- label: '📒 Documentation'
57+
files:
58+
- '*.md'
59+
title:
60+
- '/(docs|doc:|\[doc\]|typos|comment|documentation)/i'
61+
- label: '☢️ Bug'
62+
title:
63+
- '/(fix|bug|missing|correct)/i'
64+
- label: '🧹 Updates'
65+
title:
66+
- '/(improve|update|refactor|deprecated|remove|unused|test)/i'
67+
- label: '🤖 Dependencies'
68+
title:
69+
- '/(bump|dependencies)/i'
70+
- label: '✏️ Feature'
71+
title:
72+
- '/(feature|feat|create|implement)/i'

0 commit comments

Comments
 (0)