GH: reduce all green job initial delay from 15 to 3 minutes#5380
Merged
GH: reduce all green job initial delay from 15 to 3 minutes#5380
Conversation
y9v
approved these changes
Feb 19, 2026
Member
y9v
left a comment
There was a problem hiding this comment.
thank you for this! It was quite annoying to wait on retries
|
✅ Tests 🎉 All green!❄️ No new flaky tests detected 🎯 Code Coverage (details) 🔗 Commit SHA: 690e0b3 | Docs | Datadog PR Page | Was this helpful? Give us feedback! |
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.
What does this PR do?
Optimizes the CI status check workflow by reducing the initial delay from 15 minutes to 3 minutes while maintaining the total wait time of 1.5 hours.
Motivation:
The current 15-minute initial delay in the
all-greenworkflow was causing unnecessarily long wait times in retry scenarios. When a job fails and is retried, the all-green job is also retried. During the retry, since we're not running the full test suite, the checks complete much faster. However, the workflow still waited 15 minutes before checking status, adding unnecessary delay to the CI pipeline.This change:
initial-delay-secondsfrom 900s (15 min) to 180s (3 min)max-retriesfrom 60 to 87 to maintain the same total wait time (1.5 hours)Change log entry
None