Skip to content

Close stale issues and PRs #58

Close stale issues and PRs

Close stale issues and PRs #58

Workflow file for this run

name: 'Close stale issues and PRs'
permissions:
issues: write
pull-requests: write
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v11
with:
stale-issue-message: 'This issue has been marked as stale due to inactivity. If there is no further activity, comment, or update within the next 30 days, this issue will be automatically closed. If this issue is still relevant, please leave a comment or provide an update to keep it open. Thank you for your contributions.'
stale-pr-message: 'This pull request has been marked as stale due to inactivity. If there are outstanding review comments, requested changes, failing tests, or missing information, please address them and provide the necessary updates. If no further activity occurs within the next 30 days, this pull request will be automatically closed. If this pull request is still active, please leave a comment or push an update to keep it open. Thank you for your contribution.'
start-date: '2026-07-01T00:00:00Z' # ISO 8601 or RFC 2822
days-before-stale: 120
days-before-close: 30