Create remove-labels.yml (#17611)
This commit is contained in:
parent
a1548f0f2b
commit
e658babb3c
|
@ -0,0 +1,19 @@
|
|||
name: Autoremove Labels
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [closed]
|
||||
pull_request_target:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
|
||||
RemoveWaitingLabelFromClosedIssueOrPR:
|
||||
if: github.event.action == 'closed'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Remove triaging labels from closed issues and PRs
|
||||
uses: actions-ecosystem/action-remove-labels@v1
|
||||
with:
|
||||
labels: |
|
||||
waiting-for-response
|
Loading…
Reference in New Issue