Skip to content

Commit

Permalink
ci: remove working label on issue closed
Browse files Browse the repository at this point in the history
  • Loading branch information
xhofe committed Jul 31, 2023
1 parent 06f4620 commit ce0c362
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/issue_rm_working.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Remove working label when issue closed

on:
issues:
types: [closed]

jobs:
rm-working:
runs-on: ubuntu-latest
steps:
- name: Remove working label
uses: actions-cool/issues-helper@v3
with:
actions: 'remove-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'working'

0 comments on commit ce0c362

Please sign in to comment.