Close stale issues and PRs #61
This file contains hidden or 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: Close stale issues and PRs | |
| on: | |
| schedule: | |
| - cron: '0 2 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| stale-issue-label: stale | |
| stale-pr-label: stale | |
| stale-issue-message: | | |
| This issue has had no activity for 30 days and is being marked as stale. It will be automatically closed in 7 days if no further updates are made. Please reply or remove the `stale` label if you'd like to keep it open. | |
| --- | |
| 本 issue 已 30 天无活动,标记为 stale。如 7 天内仍无更新将自动关闭。如仍需跟进请回复或移除 `stale` 标签。 | |
| close-issue-message: | | |
| Closing this issue automatically due to prolonged inactivity. Feel free to reopen if the problem still exists. | |
| --- | |
| 因长期无响应自动关闭。如问题仍存在欢迎重开。 | |
| stale-pr-message: | | |
| This PR has had no activity for 30 days and is being marked as stale. It will be automatically closed in 7 days if no further updates are made. | |
| --- | |
| 本 PR 已 30 天无活动,标记为 stale。如 7 天内仍无更新将自动关闭。 | |
| close-pr-message: | | |
| Closing this PR automatically due to prolonged inactivity. Feel free to reopen if you'd like to continue the work. | |
| --- | |
| 因长期无响应自动关闭。如需继续推进欢迎重开。 | |
| exempt-issue-labels: "pinned,security,roadmap,keep-open" | |
| exempt-pr-labels: "pinned,security,keep-open" | |
| exempt-all-milestones: true | |
| operations-per-run: 100 |