[skip ci] Limit stale issue closer to source requests, but make it more aggressive
This commit is contained in:
parent
c9f515761e
commit
4807058f0e
|
@ -7,13 +7,16 @@ jobs:
|
||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v4
|
- uses: actions/stale@v5
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# Close everything older than 1 year
|
# Close everything older than ~6 months
|
||||||
days-before-issue-stale: 365
|
days-before-issue-stale: 180
|
||||||
days-before-issue-close: 0
|
days-before-issue-close: 0
|
||||||
|
ignore-updates: true
|
||||||
|
any-of-issue-labels: "Source request"
|
||||||
exempt-issue-labels: do-not-autoclose
|
exempt-issue-labels: do-not-autoclose
|
||||||
close-issue-message: "In an effort to have a more manageable issue backlog, we're closing issues older than 1 year. If you think your request or report is still relevant and may benefit others, please open a new issue."
|
close-issue-message: "In an effort to have a more manageable issue backlog, we're closing older requests that weren't addressed. If you think the source may still benefit others, please open a new request."
|
||||||
|
close-issue-reason: not_planned
|
||||||
ascending: true
|
ascending: true
|
||||||
operations-per-run: 250
|
operations-per-run: 250
|
||||||
|
|
Loading…
Reference in New Issue