Skip to content

Close stale issues and PRs #22

Close stale issues and PRs

Close stale issues and PRs #22

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 10 * * 0'
jobs:
stale:
permissions:
pull-requests: write
issues: write
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue has been marked as stale because it has been opened 30 days without activity. Remove stale label or comment or this will be closed in 5 days.'
stale-pr-message: 'This issue has been marked as stale because it has been opened 45 days without activity. Remove stale label or comment or this will be closed in 10 days.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
close-pr-message: 'This PR was closed because it has been stalled for 10 days with no activity.'
days-before-issue-stale: 30
days-before-pr-stale: 30
days-before-issue-close: 5
days-before-pr-close: 10
exempt-issue-labels: never-stale,v4.x,v5.x,good-first-issue,help-wanted,semver-major,semver-minor
exempt-pr-labels: wip,never-stale,v4.x,v5.x,semver-major,semver-minor