Update stale_bot.yml

This commit is contained in:
Martin McKeaveney 2025-01-15 15:49:01 +00:00 committed by GitHub
parent c502a27b8f
commit 93c10cf17b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 38 deletions

View File

@ -8,41 +8,15 @@ jobs:
stale: stale:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/stale@v8 - uses: actions/stale@v8
with: with:
days-before-stale: 330 # Issues
operations-per-run: 30 days-before-stale: 180
# stale rules for PRs stale-issue-label: stale
days-before-pr-stale: 7 days-before-close: 30
stale-issue-label: stale stale-issue-message: "This issue has been automatically marked as stale as there has been no activity for 6 months."
exempt-pr-labels: pinned,security,roadmap # Pull requests
days-before-pr-close: 7 days-before-pr-stale: 7
days-before-issue-close: 30 days-before-pr-close: 14
exempt-pr-labels: pinned,security,roadmap
- uses: actions/stale@v8 operations-per-run: 100
with:
operations-per-run: 50
# stale rules for high priority bugs
days-before-stale: 30
only-issue-labels: bug,High priority
stale-issue-label: warn
days-before-close: 30
- uses: actions/stale@v8
with:
operations-per-run: 50
# stale rules for medium priority bugs
days-before-stale: 90
only-issue-labels: bug,Medium priority
stale-issue-label: warn
days-before-close: 30
- uses: actions/stale@v8
with:
operations-per-run: 50
# stale rules for all bugs
days-before-stale: 180
stale-issue-label: stale
only-issue-labels: bug
stale-issue-message: "This issue has been automatically marked as stale because it has not had any activity for six months."
days-before-close: 30