MiniKano的小窝 #1253
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Issue 关闭 时自动 删除“待回应”、“待处理”标签 | |
name: 【Closed】Label and move to project on issue closed | |
on: | |
issues: | |
types: [closed] | |
jobs: | |
remove-labels: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Remove labels | |
uses: andymckay/labeler@master | |
with: | |
remove-labels: "待处理, 待回应, 处理中, 观察期" | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |