Skip to content

Commit 9bcce5e

Browse files
committed
feat: add actions for update PR
1 parent 045331d commit 9bcce5e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: updates Labels
2+
3+
on:
4+
pull_request_target:
5+
types: [ edited ]
6+
7+
jobs:
8+
add_labels:
9+
runs-on: ubuntu-latest
10+
if: ${{ github.event.label.name == 'sponsor' || github.event.label.name == 'contributor' }}
11+
steps:
12+
- name: checkout
13+
uses: actions/checkout@v2
14+
15+
- name: Add labels
16+
uses: actions-ecosystem/action-add-labels@v1
17+
with:
18+
labels: to be reviewed/update

0 commit comments

Comments
 (0)