add release draft template for gh
Browse files- .github/release-drafter.yml +31 -0
.github/release-drafter.yml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
name-template: 'v$RESOLVED_VERSION'
|
| 2 |
+
tag-template: 'v$RESOLVED_VERSION'
|
| 3 |
+
categories:
|
| 4 |
+
- title: '🚀 Features'
|
| 5 |
+
labels:
|
| 6 |
+
- 'feature'
|
| 7 |
+
- 'enhancement'
|
| 8 |
+
- title: '🐛 Bug Fixes'
|
| 9 |
+
labels:
|
| 10 |
+
- 'fix'
|
| 11 |
+
- 'bugfix'
|
| 12 |
+
- 'bug'
|
| 13 |
+
- title: '🧰 Maintenance'
|
| 14 |
+
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.
|
| 17 |
+
version-resolver:
|
| 18 |
+
major:
|
| 19 |
+
labels:
|
| 20 |
+
- 'major'
|
| 21 |
+
minor:
|
| 22 |
+
labels:
|
| 23 |
+
- 'minor'
|
| 24 |
+
patch:
|
| 25 |
+
labels:
|
| 26 |
+
- 'patch'
|
| 27 |
+
default: patch
|
| 28 |
+
template: |
|
| 29 |
+
## What’s Changed
|
| 30 |
+
|
| 31 |
+
$CHANGES
|