Skip to content

Close stale issues and PRs #363

Close stale issues and PRs

Close stale issues and PRs #363

Workflow file for this run

name: 'Close stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
permissions:
issues: write
contents: read
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
stale-issue-label: 'stale/wontfix'
stale-issue-message: 'This issue is stale. If this issue is still occurring and you are on a [supported version](https://github.com/ciderapp/Cider-2/blob/main/SECURITY.md#supported-versions), please leave any comment (e.g. "bump") and the issue will remain open. If you have any additional information that may help us resolve your issue, please include it with your comment.'
close-issue-message: 'This issue has been closed due to inactivity. If you find this bug to still be occurring in a [supported version](https://github.com/ciderapp/Cider-2/blob/main/SECURITY.md#supported-versions), please open a new issue with the necessary information.'
days-before-issue-stale: 30
days-before-issue-close: 10
exempt-issue-labels: "security,status/confirmed,stale-exempt"