neon_arch
commited on
Commit
β’
360f415
1
Parent(s):
658505c
π€ ci: add auto pull request labeling github action (#233)
Browse files
.github/workflows/pr_labeler.yml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: "Pull Request Auto Labeler"
|
2 |
+
on:
|
3 |
+
- pull_request_target
|
4 |
+
|
5 |
+
jobs:
|
6 |
+
triage:
|
7 |
+
permissions:
|
8 |
+
contents: read
|
9 |
+
pull-requests: write
|
10 |
+
runs-on: ubuntu-latest
|
11 |
+
steps:
|
12 |
+
- uses: actions/labeler@v4
|
13 |
+
with:
|
14 |
+
sync-labels: true
|
15 |
+
dot: true
|