Configure stale bot
This commit is contained in:
parent
bff779b63a
commit
2678360f00
18
.github/workflows/stale.yml
vendored
18
.github/workflows/stale.yml
vendored
@ -5,6 +5,9 @@ on:
|
|||||||
- master
|
- master
|
||||||
# schedule:
|
# schedule:
|
||||||
# - cron: '30 1 * * *'
|
# - cron: '30 1 * * *'
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
stale:
|
stale:
|
||||||
@ -13,4 +16,19 @@ jobs:
|
|||||||
- uses: actions/stale@v9
|
- uses: actions/stale@v9
|
||||||
with:
|
with:
|
||||||
stale-issue-message: 'This issue seems to be stale. It will be closed in 7 days if no further activity occurs.'
|
stale-issue-message: 'This issue seems to be stale. It will be closed in 7 days if no further activity occurs.'
|
||||||
|
days-before-issue-stale: 180 # 6 months
|
||||||
|
days-before-issue-close: 7
|
||||||
|
days-before-pr-stale: 180 # 6 months
|
||||||
|
days-before-pr-close: -1 # never close PRs
|
||||||
debug-only: true
|
debug-only: true
|
||||||
|
exempt-issue-labels:
|
||||||
|
- 'Do Not Stale'
|
||||||
|
- 'Feature Request'
|
||||||
|
- 'Performance'
|
||||||
|
- 'Bug Report'
|
||||||
|
- 'CI'
|
||||||
|
- 'Starter Task'
|
||||||
|
- 'Refactor'
|
||||||
|
- 'Guidance'
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user