Skip to content

Commit

Permalink
Merge pull request #4125 from MicrosoftEdge/add-label-tagger
Browse files Browse the repository at this point in the history
Add Issue Labeler
  • Loading branch information
victorhuangwq authored Dec 13, 2023
2 parents ec8d859 + 1629e48 commit 256cfb8
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
regression:
- '(Regression in newer Runtime|Regression in newer SDK)'
13 changes: 13 additions & 0 deletions .github/workflows/autoAssign.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Auto Assign
on:
issues:
types: [labeled]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: wow-actions/auto-assign@v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
assignees: vbryh-msft, lflores-ms
includeLabels: ['regression']
19 changes: 19 additions & 0 deletions .github/workflows/regexLabeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: "Issue Labeler"
on:
issues:
types: [opened, edited]

permissions:
issues: write
contents: read

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: github/[email protected]
with:
configuration-path: .github/labeler.yml
enable-versioned-regex: 0
include-title: 1
repo-token: ${{ github.token }}

0 comments on commit 256cfb8

Please sign in to comment.