Skip to content

Commit 400691c

Browse files
authored
chore(gh): add issue labels (#454)
Add issue labels. Signed-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
1 parent 62332c0 commit 400691c

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/labeler-issues.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
pending-review:
3+
- '.*'

.github/workflows/issues.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Issue Triage
3+
4+
on:
5+
issues:
6+
types:
7+
- opened
8+
9+
jobs:
10+
label-issues:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Apply Issue Triage Labels
14+
uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4
15+
with:
16+
repo-token: '${{ secrets.GITHUB_TOKEN }}'
17+
configuration-path: .github/labeler-issues.yml
18+
enable-versioned-regex: 0
19+
include-title: 1

0 commit comments

Comments
 (0)