fix(ci): add grace period to stale PR bot#675
Open
malob wants to merge 1 commit intogoogleworkspace:mainfrom
Open
fix(ci): add grace period to stale PR bot#675malob wants to merge 1 commit intogoogleworkspace:mainfrom
malob wants to merge 1 commit intogoogleworkspace:mainfrom
Conversation
The previous config (days-before-pr-close: 0) marked PRs stale and closed them in the same workflow run, giving contributors no chance to respond to the warning. Multiple community PRs have been auto-closed and had to be re-filed as duplicates (googleworkspace#554→googleworkspace#589, googleworkspace#634→googleworkspace#665, googleworkspace#643→googleworkspace#667→googleworkspace#674). Add a 4-day grace period after the 3-day stale mark (7 days total), so contributors see the warning and can comment or push to reset the timer before the PR is closed.
|
Contributor
|
Note Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported. |
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
The stale bot currently marks PRs stale after 3 days and closes them instantly in the same run (
days-before-pr-close: 0). Contributors see the stale warning and close message simultaneously, with no chance to respond.This has caused multiple community PRs to be auto-closed and re-filed as duplicates: #554→#589, #634→#665, #643→#667→#674.
This PR adds a 4-day grace period after the 3-day stale mark (7 days total before close). The stale warning now tells contributors they can comment or push to reset the timer.
Before
After