Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump stalebot to version 9 #36494

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/recheck-old-bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
recheck-old-bug-report:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
only-issue-labels: 'kind:bug'
stale-issue-label: 'Stale Bug Report'
Expand All @@ -38,8 +38,10 @@ jobs:
# scan only issues: https://github.com/actions/stale/issues/837
# To avoid this job scanning also PRs and setting the defaults of the bot to them,
# we set high number of days thus effectively this job will not do any changes on PRs
days-before-pr-stale: 7000
days-before-pr-close: 7000
# Possible workaround with -1 as mentioned in
# https://github.com/actions/stale/issues/1112#issuecomment-1871654196
days-before-pr-stale: -1
days-before-pr-close: -1
remove-stale-when-updated: false
remove-issue-stale-when-updated: true
labels-to-add-when-unstale: 'needs-triage'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
stale:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/stale@v8
- uses: actions/stale@v9
with:
stale-pr-message: >
This pull request has been automatically marked as stale because it has not had
Expand Down