2021-10-09 02:39:44 +08:00
name : 'Stale issue handler'
on :
workflow_dispatch :
schedule :
- cron : '0 0 * * *'
jobs :
stale :
runs-on : ubuntu-latest
steps :
- uses : actions/stale@main
id : stale
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'
2021-10-09 03:06:12 +08:00
days-before-issue-stale : 30
days-before-pr-stale : 30
2021-10-09 02:39:44 +08:00
days-before-issue-close : 5
days-before-pr-close : 5
exempt-issue-labels : 'blocked,must,should,keep'
- name : Print outputs
run : echo ${{ join(steps.stale.outputs.*, ',') }}