Stale Cleanup #209
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 Cleanup | |
| on: | |
| schedule: | |
| - cron: "30 1 * * *" | |
| workflow_dispatch: | |
| permissions: | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| stale: | |
| name: Close stale issues & PRs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Mark & close stale issues/PRs | |
| uses: actions/stale@v10 | |
| with: | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| days-before-stale: 45 | |
| days-before-close: 0 | |
| stale-issue-message: > | |
| This issue is marked stale due to 45+ days of inactivity and is being closed. | |
| If this is still relevant, please comment to reopen. | |
| stale-pr-message: > | |
| This PR is marked stale due to 45+ days of inactivity and is being closed. | |
| If this is still relevant, please comment to reopen. |