Skip to content

Stale Issues and PRs #118

Stale Issues and PRs

Stale Issues and PRs #118

Workflow file for this run

name: Stale Issues and PRs
on:
schedule:
- cron: '0 0 * * *' # Daily midnight UTC
permissions:
issues: write
pull-requests: write
jobs:
stale:
name: Mark Stale
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message: >
This issue has been inactive for 60 days. It will be closed in 7 days
unless there is new activity. If this is still relevant, please comment
to keep it open.
stale-pr-message: >
This PR has been inactive for 30 days. It will be closed in 7 days
unless there is new activity.
days-before-issue-stale: 60
days-before-pr-stale: 30
days-before-close: 7
stale-issue-label: 'stale'
stale-pr-label: 'stale'
exempt-issue-labels: 'pinned,security'
exempt-pr-labels: 'pinned,security'