Adding triage label to any new issue

This commit is contained in:
John Westcott IV 2022-01-30 13:59:37 -05:00
parent 627bde9e9e
commit 2d6192db75
2 changed files with 23 additions and 0 deletions

2
.github/issue_labeler.yml vendored Normal file
View File

@ -0,0 +1,2 @@
needs_triage:
- '.*'

21
.github/workflows/triage_new.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Triage
on:
issues:
types:
- opened
jobs:
triage:
runs-on: ubuntu-latest
name: Label
steps:
- name: Label issues
uses: github/issue-labeler@v2.4.1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
not-before: 2021-12-07T07:00:00Z
configuration-path: .github/issue_labeler.yml
enable-versioned-regex: 0
if: github.event_name == 'issues'