We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90ee38 commit 4586023Copy full SHA for 4586023
1 file changed
.github/workflows/release-drafter.yml
@@ -0,0 +1,25 @@
1
+name: Release Drafter
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request_target:
8
+ types: [opened, reopened, synchronize]
9
10
+permissions:
11
+ contents: write
12
13
+jobs:
14
+ update_release_draft:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - name: Checkout repository
18
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19
+ with:
20
+ fetch-depth: 0
21
+ - uses: release-drafter/release-drafter@563bf132657a13ded0b01fcb723c5a58cdd824e2 # v7.2.1
22
23
+ commitish: ${{ github.event.pull_request.head.sha || github.sha }}
24
+ env:
25
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments