Skip to content

Close stale issues and PRs #320

Close stale issues and PRs

Close stale issues and PRs #320

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '0 14 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 7
days-before-close: 3
any-of-issue-labels: 'question,more info'
stale-issue-message: 'This issue is stale, and will be closed in 3 days if no reply is received.'
close-issue-message: 'Closing this issue as it has been inactive for 10 days.'
any-of-pr-labels: 'awaiting author revision'
stale-pr-message: 'This PR is stale, and will be closed in 3 days if no reply is received.'
close-pr-message: 'Closing this PR as it has been inactive for 10 days.'