2021-12-16 20:19:11 +01:00
name : Mark stale issues
on :
schedule :
2022-01-08 10:42:35 +01:00
- cron : '0 * * * *'
workflow_dispatch :
2021-12-16 20:19:11 +01:00
jobs :
stale :
runs-on : ubuntu-latest
permissions :
issues : write
steps :
- uses : actions/stale@v4
with :
repo-token : ${{ secrets.GITHUB_TOKEN }}
days-before-stale : 30
days-before-close : 5
stale-issue-message : 'This issue is stale because it has been open 30 days with no activity. Please comment or update this issue or it will be closed in 5 days.'
2022-01-30 20:13:10 +01:00
stale-issue-label : 'stale'
2022-03-05 16:49:54 +01:00
exempt-issue-labels: 'Internal, Fixed in next release, Bug : Confirmed, Documentation Needed'
2021-12-16 20:19:11 +01:00
exempt-all-issue-assignees : true
2022-01-11 20:15:30 +01:00
operations-per-run : 300