lock-slate-issues #293
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
name: 'lock-slate-issues' | |
on: | |
schedule: | |
- cron: "0 8 * * *" | |
jobs: | |
lock: | |
permissions: | |
issues: write # to lock issues | |
pull-requests: write # to lock PRs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-cool/issues-helper@v3 | |
with: | |
actions: 'close-issues' | |
token: ${{ secrets.ROBOT_TOKEN }} | |
inactive-day: 14 | |
body: | | |
This issue has been automatically closed since there has not been any recent activity after it was created. Please open a new issue for related bugs. | |
由于该 issue 创建后没有任何近期活动,因此已被自动关闭,请针对相关问题打开一个新 issue 。 | |
- uses: dessant/lock-threads@v4 | |
with: | |
log-output: true | |
github-token: ${{ secrets.ROBOT_TOKEN }} | |
issue-inactive-days: 15 | |
pr-inactive-days: 15 |