Update triage labelling configuration
This commit is contained in:
parent
cdc929add7
commit
1231ee6314
2 changed files with 17 additions and 3 deletions
|
@ -1,13 +1,13 @@
|
||||||
name: Triage label new issues
|
name: Add triage label to new issues
|
||||||
on:
|
on:
|
||||||
issues:
|
issues:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
jobs:
|
jobs:
|
||||||
triage_label_issues:
|
triage_issues:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Label issues
|
- name: Label issue
|
||||||
uses: andymckay/labeler@master
|
uses: andymckay/labeler@master
|
||||||
with:
|
with:
|
||||||
add-labels: "status/triage"
|
add-labels: "status/triage"
|
14
.github/workflows/triage_prs.yml
vendored
Normal file
14
.github/workflows/triage_prs.yml
vendored
Normal 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
|
Loading…
Add table
Reference in a new issue