Skip to content

Identify and close stale issues and PRs #630

Identify and close stale issues and PRs

Identify and close stale issues and PRs #630

Workflow file for this run

name: 'Identify and close stale issues and PRs'
on:
workflow_dispatch:
schedule:
- cron: '4 1 * * *'
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-message:
This issue has been identified as stale because it
has gone 30 days with no activity.
The issue will be closed in 10 days. If this is incorrect,
simply comment on the issue, or remove the stale label.
stale-pr-message:
This pull request has been identified as stale because
it has gone 30 days with no activity.
The pull request will be closed in 10 days. If this is incorrect,
simply comment on the PR, remove the label, or merge the PR.
Reminder, once a PR is approved, and checks have passed,
you **can merge it yourself.**
days-before-stale: 30
days-before-close: 10
exempt-issue-labels: "keep-me"
exempt-pr-labels: "keep-me"