2021-01-15 21:07:08 +09:00
name : 'Stale issue handler'
2020-08-21 07:44:56 -04:00
on :
2020-08-21 08:19:04 -04:00
workflow_dispatch :
2020-08-21 07:44:56 -04:00
schedule :
2021-01-15 21:07:08 +09:00
- cron : '0 0 * * *'
2020-08-21 07:44:56 -04:00
jobs :
stale :
runs-on : ubuntu-latest
steps :
2021-01-16 09:50:58 -05:00
- uses : actions/stale@main
2021-01-15 21:07:08 +09:00
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'
days-before-stale : 30
days-before-close : 5
2021-01-15 07:40:06 -05:00
exempt-issue-labels : 'blocked,must,should,keep'