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.
2 parents 1eecb80 + 75b2f02 commit fefb3bdCopy full SHA for fefb3bd
.github/release-drafter.yml
@@ -0,0 +1,16 @@
1
+name-template: 'v$NEXT_PATCH_VERSION'
2
+tag-template: 'v$NEXT_PATCH_VERSION'
3
+categories:
4
+ - title: Features
5
+ labels:
6
+ - 'enhancement'
7
+ - title: Bug Fixes
8
9
+ - 'bug'
10
+ - title: Maintenance
11
12
+ - 'chore'
13
+change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
14
+template: |
15
+ ## What's Changed
16
+ $CHANGES
.github/workflows/release-drafter.yml
@@ -0,0 +1,14 @@
+name: Release Drafter
+
+on:
+ push:
+ branches:
+ - 'main'
+jobs:
+ update_release_draft:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: release-drafter/release-drafter@v5
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments