Rerun unstable failures for CI/CD workflow#8219
Open
aholstrup1 wants to merge 1 commit into
Open
Conversation
Extend the RerunUnstableFailures workflow trigger to also match the ' CI/CD' workflow, so flaky failures in CI/CD builds get the same automatic rerun treatment as Pull Request Build.
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.
Extends the
RerunUnstableFailuresworkflow to also trigger on completed runs of theCI/CDworkflow (in addition toPull Request Build).CI/CD builds occasionally hit the same kinds of flaky infrastructure failures as PR builds, so they benefit equally from automatic rerun-on-failure. The existing safeguards (MAX_FAILED_JOBS=3,MIN_TOTAL_JOBS=10,MAX_ATTEMPTS=1) apply unchanged, andbuild/scripts/RerunUnstableFailures.ps1is already workflow-agnostic so no script changes are needed.Fixes AB#636157