Close Stale Issues #10
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 | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-issue-message: "This issue has been inactive for 30 days. It will be closed automatically unless there is new activity." | |
| stale-issue-label: "stale" | |
| close-issue-message: "Closed due to 30 days of inactivity. Feel free to reopen if still relevant." | |
| days-before-stale: 30 | |
| days-before-close: 7 | |
| operations-per-run: 100 | |
| exempt-issue-labels: "pinned,security" |