Flaky Tests Detector #22991
Workflow file for this run
This file contains 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
# This check runs only on PRs that are in the merge queue. | |
# | |
# PRs in the merge queue have already been approved but the reviewers check | |
# is still required so this workflow allows the required check to succeed, | |
# otherwise PRs in the merge queue would be blocked indefinitely. | |
# | |
# See "Handling skipped but required checks" for more info: | |
# | |
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | |
# | |
# Note both workflows must have the same name. | |
name: Flaky Tests Detector | |
on: | |
merge_group: | |
jobs: | |
test: | |
name: Flaky Tests Detector | |
runs-on: ubuntu-latest | |
permissions: | |
contents: none | |
steps: | |
- run: 'echo "Skipping flaky test detector in merge queue"' |