add on issue closed github actions workflow
This commit is contained in:
parent
f792612134
commit
b411b92d1c
1 changed files with 17 additions and 0 deletions
17
.github/workflows/on-issue-closed.yml
vendored
Normal file
17
.github/workflows/on-issue-closed.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
name: On issue closed
|
||||
|
||||
on:
|
||||
issues:
|
||||
types:
|
||||
- closed
|
||||
|
||||
jobs:
|
||||
remove-needs-triage-label:
|
||||
name: Remove "needs triage" label
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Remove "needs triage" label
|
||||
uses: actions-ecosystem/action-remove-labels@v1.3.0
|
||||
with:
|
||||
labels: needs triage
|
||||
Loading…
Add table
Reference in a new issue