Skip to content

Stale issue handler #804

Stale issue handler

Stale issue handler #804

Workflow file for this run

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 180 days with no activity. Remove stale label or comment or this will be closed in 5 days'
days-before-stale: 180
days-before-close: 14
exempt-issue-labels: 'backlog,bug,ob-hold,keep'
- name: Print outputs
run: echo ${{ join(steps.stale.outputs.*, ',') }}