Stale Issues #59
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 Issues | |
| on: | |
| schedule: | |
| - cron: '0 2 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Mark and close stale issues | |
| uses: actions/stale@v10 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| days-before-issue-stale: 365 | |
| days-before-issue-close: 20 | |
| days-before-pr-stale: -1 | |
| days-before-pr-close: -1 | |
| exempt-issue-labels: 'help wanted' | |
| stale-issue-message: > | |
| This issue has been automatically marked as stale because it has had | |
| no activity for 1 year. It will be closed in 20 days if no further | |
| activity occurs. | |
| close-issue-message: > | |
| This issue was automatically closed after being marked stale for | |
| 20 days with no further activity. |