Skip to content

Close stale issues

Close stale issues #59

Workflow file for this run

name: 'Close stale issues'
on:
workflow_dispatch:
schedule:
- cron: '37 7 * * *'
permissions:
contents: read
jobs:
stale:
permissions:
issues: write # for actions/stale to close stale issues
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
days-before-stale: 20
days-before-close: 180
days-before-pr-stale: -1
days-before-pr-close: -1
exempt-all-milestones: true
exempt-issue-labels: 'Priority,Backlog'
remove-stale-when-updated: false
stale-issue-label: 'PR Welcome'
stale-issue-message: >
Thanks a lot for reporting the issue.
We did not consider the issue as "Priority" or "Backlog",
so we're not going to work on that anytime soon.
Please create a pull request to fix the issue if this is a bug report.
We'll then review it as quickly as possible.
If you're interested in contributing a feature, please contact us
first here before creating a pull request. We'll then decide whether
we'd accept it or not.
Thanks for your understanding.
close-issue-message: >
Closed due to inactivity (180 days).
Please feel free to continue the discussion or provide the missing information on this issue,
we'll then reopen it if necessary.
Thanks a lot!