Skip to content

Stale Issues

Stale Issues #107

Workflow file for this run

# Auto-close stale issues and PRs
#
# Issues without activity for 60 days get labeled "stale".
# If no response after 7 more days, they are closed.
name: Stale Issues
on:
schedule:
- cron: "30 1 * * *" # Daily at 01:30 UTC
workflow_dispatch:
permissions:
issues: write
pull-requests: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v10
with:
stale-issue-message: >
This issue has been automatically marked as stale because it has not had
activity in the last 60 days. It will be closed in 7 days if no further
activity occurs. If this issue is still relevant, please leave a comment
or remove the stale label.
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
activity in the last 60 days. It will be closed in 7 days if no further
activity occurs. Please update or close this PR.
close-issue-message: >
This issue was closed because it has been stale for 67 days with no activity.
Feel free to reopen if it is still relevant.
close-pr-message: >
This PR was closed because it has been stale for 67 days with no activity.
Feel free to reopen if you want to continue working on it.
days-before-stale: 60
days-before-close: 7
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-issue-labels: "pinned,security,bug-confirmed"
exempt-pr-labels: "pinned,work-in-progress"