Skip to content

Commit a447e8b

Browse files
committed
Automatically label new issues with triage.
1 parent 0cc8581 commit a447e8b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/label-issue.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
name: Label issues
7+
on:
8+
issues:
9+
types:
10+
- reopened
11+
- opened
12+
jobs:
13+
label_issues:
14+
runs-on: ubuntu-latest
15+
permissions:
16+
issues: write
17+
steps:
18+
- name: Label issues
19+
uses: andymckay/labeler@5c59dabdfd4dd5bd9c6e6d255b01b9d764af4414
20+
with:
21+
add-labels: "triage"
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)