Skip to content

Commit 382c2be

Browse files
authored
Add release drafter workflow
1 parent b33a12e commit 382c2be

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Diff for: .github/workflows/release-drafter.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release Drafter
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
push:
8+
branches:
9+
- master
10+
11+
jobs:
12+
updateReleaseDraft:
13+
permissions:
14+
contents: write
15+
pull-requests: read
16+
runs-on: ubuntu-22.04
17+
steps:
18+
- uses: release-drafter/[email protected]
19+
with:
20+
config-name: release-drafter.yml
21+
disable-autolabeler: true
22+
env:
23+
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)