Close Stale #791
This file contains 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 | |
on: | |
schedule: | |
- cron: "37 0 * * *" | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/stale@v9 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue is getting a bit stale... the robots will come for it soon unless un-staled or comment or magic' | |
stale-issue-label: 'Stale' | |
exempt-issue-labels: 'Fresh' | |
exempt-pr-labels: 'Fresh' | |
days-before-close: -1 | |
operations-per-run: 10 |