Skip to content

Close Stale Threads #186

Close Stale Threads

Close Stale Threads #186

Workflow file for this run

name: Close Stale Threads
on:
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v9
with:
stale-issue-message: 'This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
stale-pr-message: 'This pull request is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
exempt-issue-labels: 'planned,work in progress'
exempt-pr-labels: 'approved,review needed,work in progress'