Skip to content

Close stale issues and PRs #609

Close stale issues and PRs

Close stale issues and PRs #609

Workflow file for this run

name: 'Close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '0 8 * * 4,0'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
exempt-issue-labels: 'hacktoberfest,good first issue'
exempt-all-milestones: true
stale-issue-message: |
This issue has been marked as stale because it has required additional
info or a response from the author for over 14 days. When you get the
chance, please comment with the additional info requested.
Otherwise, this issue will be closed in 28 days.
close-issue-message: |
This issue has been closed because it has received no activity for
28 days.
stale-issue-label: 'stale 🍞'
stale-pr-label: 'stale 🍞'
days-before-stale: 14
days-before-close: 28
debug-only: false