Skip to content

Commit

Permalink
chore: add auto close issue workflow on master branch (#5243)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarebecca authored Dec 8, 2023
1 parent 78f77ce commit 369795b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/auto_close_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Auto Close Issue
on:
issues:
types: [labeled]

jobs:
auto-close:
runs-on: ubuntu-latest
steps:
- name: Close Outdate issue
if: ${{ github.event.label.name == 'Outdate' }}
uses: peter-evans/close-issue@v1
with:
comment: |
This issue has been closed because **it has been outdate for a long time**.
Please open a new issue if you still need help.
这个 issue 已经被关闭,因为 **它已经过期很久了**。
如果你仍然需要帮助,请创建一个新的 issue。
token: ${{ secrets.GITHUB_TOKEN }}
- name: Close Duplicate issue
if: ${{ github.event.label.name == 'Duplicate' }}
uses: peter-evans/close-issue@v1
with:
comment: |
This issue has been closed because **it is duplicated**.
这个 issue 已经被关闭,因为 **它是一个重复的 issue**。
token: ${{ secrets.GITHUB_TOKEN }}
- name: Close Invalid issue
if: ${{ github.event.label.name == 'Invalid' }}
uses: peter-evans/close-issue@v1
with:
comment: |
This issue has been closed because **it is invalid**.
这个 issue 已经被关闭,因为 **它是无效的**。
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 369795b

Please sign in to comment.