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 20e89fc commit b86186dCopy full SHA for b86186d
.github/workflows/release-drafter.yml
@@ -0,0 +1,21 @@
1
+name: Release Drafter
2
+
3
+on:
4
+ 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