-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Flaky detector Bypass before merging (#23923)
* Add Flaky Bypass before merging * edit to descriptions
- Loading branch information
1 parent
311b1be
commit 99c5002
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This workflow is required to ensure that required Github check passes even if | ||
# the actual "Flaky Tests Detector" workflow is skipped due to path filtering. Otherwise | ||
# it will stay forever pending. Another bypass is used for the merge queue. | ||
# | ||
# 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 | ||
run-name: Flaky Tests Detector | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- '**.go' | ||
- '.github/workflows/flaky-tests.yaml' | ||
jobs: | ||
test: | ||
name: Flaky Tests Detector | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: none | ||
|
||
steps: | ||
- run: 'echo "No changes to verify"' |