Skip to content

Close stale issues and PRs #934

Close stale issues and PRs

Close stale issues and PRs #934

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 5 * * *'
permissions:
contents: read
jobs:
stale:
permissions:
issues: write # for actions/stale to close stale issues
pull-requests: write # for actions/stale to close stale PRs
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
close-issue-message: 'Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information.'
stale-issue-message: 'Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. Thank you for your contributions.'
days-before-stale: 90
days-before-close: 7
enable-statistics: true
operations-per-run: 60
exempt-issue-labels: 'acknowledged,needs-triage'