Skip to content

Stale Issues

Stale Issues #423

Workflow file for this run

name: 'Stale Issues'
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
stale-issue-message: 'This issue is stale because it has been open 14 days with no activity. Remove stale label or comment or this will be closed in 7 days.'
close-issue-message: 'Closing this issue as it has been stale for 21 days with no activity.'
days-before-stale: 21
days-before-close: 7
exempt-issue-labels: 'WIP,todo,work-in-progress'