Close Stale PRs #9
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 PRs | |
| on: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| stale: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/stale@v9 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| stale-pr-message: "This PR has been inactive for 14 days. It will be closed automatically unless there is new activity." | |
| stale-pr-label: "stale" | |
| close-pr-message: "Closed due to 14 days of inactivity." | |
| days-before-stale: 14 | |
| days-before-close: 7 | |
| operations-per-run: 50 |