Skip to content

Commit 6ea8141

Browse files
authored
feat: Add release-drafter config (#21)
1 parent 640461a commit 6ea8141

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/release-drafter.yaml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
3+
name-template: 'gap-docker -- v$RESOLVED_VERSION'
4+
tag-template: 'v$RESOLVED_VERSION'
5+
categories:
6+
- title: '🚀 Features'
7+
labels:
8+
- 'feature'
9+
- 'enhancement'
10+
- title: '🐛 Fixes'
11+
labels:
12+
- 'fix'
13+
- 'bugfix'
14+
- 'bug'
15+
- title: '🧰 Maintenance'
16+
labels:
17+
- 'chore'
18+
- 'documentation'
19+
- 'dependencies'
20+
21+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
22+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
23+
version-resolver:
24+
major:
25+
labels:
26+
- 'major'
27+
minor:
28+
labels:
29+
- 'minor'
30+
patch:
31+
labels:
32+
- 'patch'
33+
default: patch
34+
template: |
35+
## What’s Changed
36+
37+
$CHANGES

0 commit comments

Comments
 (0)