Stale issues #2
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 8 * * 1" | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| stale-issue-message: "This issue has been inactive for 90 days. Remove the stale label or comment to keep it open." | |
| stale-pr-message: "This PR has been inactive for 30 days. Remove the stale label or comment to keep it open." | |
| days-before-stale: 90 | |
| days-before-pr-stale: 30 | |
| days-before-close: 14 |