Stale Cleanup #40
Workflow file for this run
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: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - 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. |