Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Flaky detector Bypass before merging #23923

Merged
merged 2 commits into from
Mar 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/flaky-tests-bypass.yaml
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"'