Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Stale issue handler #317

Stale issue handler

Stale issue handler #317

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