Skip to content

stale

stale #733

Workflow file for this run

name: stale
on:
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 7 days with no activity.
Remove stale label or comment or this will be closed in 3 days.
days-before-stale: 7
days-before-close: 3
exempt-issue-labels: "blocked,must,should,keep"
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}