26 lines
867 B
YAML
26 lines
867 B
YAML
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@v10
|
|
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'
|