Skip to content

Commit 256cfb8

Browse files
Merge pull request #4125 from MicrosoftEdge/add-label-tagger
Add Issue Labeler
2 parents ec8d859 + 1629e48 commit 256cfb8

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

.github/labeler.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
regression:
2+
- '(Regression in newer Runtime|Regression in newer SDK)'

.github/workflows/autoAssign.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Auto Assign
2+
on:
3+
issues:
4+
types: [labeled]
5+
jobs:
6+
run:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: wow-actions/auto-assign@v3
10+
with:
11+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
12+
assignees: vbryh-msft, lflores-ms
13+
includeLabels: ['regression']

.github/workflows/regexLabeler.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: "Issue Labeler"
2+
on:
3+
issues:
4+
types: [opened, edited]
5+
6+
permissions:
7+
issues: write
8+
contents: read
9+
10+
jobs:
11+
triage:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: github/[email protected]
15+
with:
16+
configuration-path: .github/labeler.yml
17+
enable-versioned-regex: 0
18+
include-title: 1
19+
repo-token: ${{ github.token }}

0 commit comments

Comments
 (0)