Skip to content

Close stale issues and PRs #429

Close stale issues and PRs

Close stale issues and PRs #429

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *' #at 1:30 pm
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v7
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.'
stale-pr-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.'
any-of-labels: 'State: Waiting feedback'
stale-issue-label: 'State: Stale'
stale-pr-label: 'State: Stale'