Skip to content

Commit b8b397f

Browse files
committed
Add back label pr workflow
1 parent b8c5496 commit b8b397f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/label-pr.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Label Pull Requests
2+
3+
on:
4+
pull_request_target:
5+
types: [opened, reopened, synchronize]
6+
7+
permissions: # added using https://github.com/step-security/secure-repo
8+
contents: read
9+
10+
jobs:
11+
label-pr:
12+
permissions:
13+
contents: read
14+
pull-requests: write
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 # v6.0.0
18+
with:
19+
disable-releaser: true
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)