parent
097f60411d
commit
d26bd23d70
17
.github/workflows/unlabel-closed-issues.yml
vendored
Normal file
17
.github/workflows/unlabel-closed-issues.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
name: Remove labels from closed issues
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [closed]
|
||||
|
||||
jobs:
|
||||
unlabel:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Unlabel the closed issue
|
||||
uses: actions-ecosystem/action-remove-labels@v1
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
labels: next
|
Loading…
Reference in a new issue