We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df19638 commit 4489a08Copy full SHA for 4489a08
2 files changed
.github/release-drafter.yml
@@ -0,0 +1,19 @@
1
+categories:
2
+ - title: '🚀 Enhancements'
3
+ labels:
4
+ - 'enhancement'
5
+ - title: '🐛 Bug Fixes'
6
7
+ - 'bugfix'
8
+ - title: '🌎 Localization'
9
10
+ - 'localization'
11
+ - title: '🧰 Maintenance'
12
13
+ - 'chore'
14
+ - 'documentation'
15
+ - 'dependencies'
16
+template: |
17
+ ## Changes
18
+
19
+ $CHANGES
.github/workflows/release-drafter.yml
@@ -0,0 +1,16 @@
+name: Release Drafter
+on:
+ # Allow running it manually in case we forget to label a PR before merging
+ workflow_dispatch:
+ push:
+ branches:
+ - main
+jobs:
+ update_release_draft:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: release-drafter/release-drafter@v6
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments