Update triage labelling configuration

This commit is contained in:
Roman Zabaluev 2022-01-19 14:13:49 +03:00 committed by GitHub
parent cdc929add7
commit 1231ee6314
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 3 deletions

View file

@ -1,13 +1,13 @@
name: Triage label new issues
name: Add triage label to new issues
on:
issues:
types:
- opened
jobs:
triage_label_issues:
triage_issues:
runs-on: ubuntu-latest
steps:
- name: Label issues
- name: Label issue
uses: andymckay/labeler@master
with:
add-labels: "status/triage"

14
.github/workflows/triage_prs.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Add triage label to new PRs
on:
pull_request:
types:
- opened
jobs:
triage_prs:
runs-on: ubuntu-latest
steps:
- name: Label PR
uses: andymckay/labeler@master
with:
add-labels: "status/triage"
ignore-if-labeled: true