Run Stale Bot #463
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: Run Stale Bot | |
on: | |
schedule: | |
- cron: '30 1 * * *' | |
permissions: | |
contents: read | |
jobs: | |
stale: | |
name: Run Stale | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write # for actions/stale to close stale issues | |
pull-requests: write # for actions/stale to close stale PRs | |
steps: | |
- uses: actions/stale@v6 | |
with: | |
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.' | |
# turn off stale for both issues and PRs | |
days-before-stale: -1 | |
# turn stale back on for issues only | |
days-before-issue-stale: 30 | |
days-before-issue-close: 14 | |
exempt-issue-labels: 'pinned,security,enhancement,refactor,documentation,chore,bug,dependencies,needs-investigation' |