We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0270a96 commit 215eaa9Copy full SHA for 215eaa9
.github/release-drafter.yml
@@ -0,0 +1,30 @@
1
+name-template: 'v$RESOLVED_VERSION'
2
+tag-template: 'v$RESOLVED_VERSION'
3
+
4
+template: |
5
+ ## General Changes
6
7
+ $CHANGES
8
9
+categories:
10
+- title: '🚀 Features'
11
+ labels:
12
+ - 'feature'
13
+ - 'enhancement'
14
+- title: '🐛 Bug Fixes'
15
16
+ - 'fix'
17
+ - 'bugfix'
18
+ - 'bug'
19
20
+version-resolver:
21
+ major:
22
23
+ - 'major'
24
+ minor:
25
26
+ - 'minor'
27
+ patch:
28
29
+ - 'patch'
30
+ default: patch
.github/workflows/release-drafter.yaml
@@ -0,0 +1,15 @@
+---
+name: Release Drafter Action
+on:
+ push:
+ branches:
+ - main
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: release-drafter/release-drafter@v6
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments