chore(ci): add stale action

This commit is contained in:
misitebao 2022-05-06 12:18:58 +08:00
parent 7bc48aa2fc
commit 9e0871b228

23
.github/workflows/stale.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Close inactive issues | 关闭不活跃的问题
on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch: # click the button on Github repo!
jobs:
close-issues:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
days-before-issue-stale: 30
days-before-issue-close: 7
stale-issue-label: "awaiting feedback | 等待反馈"
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as 'awaiting feedback'."
days-before-pr-stale: -1
days-before-pr-close: -1
repo-token: ${{ secrets.GITHUB_TOKEN }}