Stale #215
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: Stale | |
| on: | |
| schedule: | |
| - cron: 0 6 * * 1-5 | |
| permissions: | |
| actions: write | |
| issues: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Close Stale Issues | |
| uses: actions/stale@v10 | |
| with: | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| exempt-all-issue-assignees: true | |
| exempt-issue-labels: "help wanted,wontfix" | |
| stale-issue-label: "stale" | |
| stale-issue-message: > | |
| This issue is unconfirmed, and has been labelled as `stale` due to inactivity. | |
| It will be closed automatically if no further activity occurs. | |
| A project maintainer can mark an issue as confirmed by adding the `help wanted` label, the `wontfix` label, or an assignee. |