From ce0c3626c266f3db3989d0ce771918ee2d429e00 Mon Sep 17 00:00:00 2001 From: Andy Hsu Date: Mon, 31 Jul 2023 16:54:00 +0800 Subject: [PATCH] ci: remove `working` label on issue closed --- .github/workflows/issue_rm_working.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/issue_rm_working.yml diff --git a/.github/workflows/issue_rm_working.yml b/.github/workflows/issue_rm_working.yml new file mode 100644 index 00000000000..5618136615d --- /dev/null +++ b/.github/workflows/issue_rm_working.yml @@ -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' \ No newline at end of file