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 20e89fc + 173532d commit 8f1299fCopy full SHA for 8f1299f
.github/release-drafter.yml
@@ -0,0 +1,4 @@
1
+template: |
2
+ ## What’s Changed
3
+
4
+ $CHANGES
.github/workflows/release-drafter.yml
@@ -0,0 +1,21 @@
+name: Release Drafter
+on:
+ push:
5
+ branches:
6
+ - main
7
8
+# Comment out the 2 lines if the permissions for the GITHUB_TOKEN is read and write and you get an workflow runtime error
9
+permissions:
10
+ contents: write
11
12
+jobs:
13
+ update_release_draft:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: release-drafter/release-drafter@v5
17
+ with:
18
+ config-name: release-drafter.yml
19
+ disable-autolabeler: true
20
+ env:
21
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments