Auto-Close Stale Issues & PRs #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: Auto-Close Stale Issues & PRs | |
| on: | |
| schedule: | |
| - cron: '0 12 * * 1' # Every Monday at noon | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Close Stale Issues and PRs | |
| uses: actions/stale@v4 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-issue-message: "This issue has been marked as stale due to inactivity." | |
| stale-pr-message: "This PR is stale. Please update it or it may be closed." | |
| days-before-stale: 30 | |
| days-before-close: 7 |