Skip to content

Stale

Stale #1

Workflow file for this run

# Auto-manage stale issues/PRs so the backlog (and the maintainer) stays healthy.
# https://opensource.guide/maintaining-balance-for-open-source-maintainers/
name: Stale
on:
schedule:
- cron: "0 3 * * *"
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
days-before-stale: 45
days-before-close: 14
stale-issue-label: stale
stale-pr-label: stale
exempt-issue-labels: "help wanted,good first issue,pinned,security,accessibility"
exempt-pr-labels: "pinned"
stale-issue-message: "Inactive for 45 days — closing in 14 days without further activity. Comment to keep it open."
stale-pr-message: "Inactive for 45 days — closing in 14 days without further activity."