Skip to content

Commit 09f8d35

Browse files
committed
automatically add "waiting on review" label to new PRs
1 parent 48437ea commit 09f8d35

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/tag-new-pr.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on:
2+
pull_request_target:
3+
branches:
4+
- master
5+
types: [opened, reopened]
6+
7+
jobs:
8+
update-labels:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions-ecosystem/action-add-labels@v1
12+
with:
13+
labels: S-waiting-on-review

0 commit comments

Comments
 (0)