From c4942ceefb06c7201643d4a04c722901f70fa86a Mon Sep 17 00:00:00 2001 From: Deanna Garcia Date: Wed, 14 Aug 2024 11:51:06 -0700 Subject: [PATCH] Add a "(fork)" suffix to the version of "All blocking tests" that is run on a fork. This will help us distinguish between the two different test cases that run, so we don't block on the fork version for CLs. PiperOrigin-RevId: 663002185 --- .github/workflows/test_runner.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_runner.yml b/.github/workflows/test_runner.yml index eb92401110..9e88e95794 100644 --- a/.github/workflows/test_runner.yml +++ b/.github/workflows/test_runner.yml @@ -255,7 +255,7 @@ jobs: # This test depends on all blocking tests and indicates whether they all suceeded. all-blocking-tests: - name: All Blocking Tests + name: All Blocking Tests${{ github.event_name == 'pull_request_target' && ' (fork)' || ''}} needs: [set-vars, validate-yaml, bazel, cpp, java, python, ruby, php, php-ext, csharp, objectivec, rust, upb, staleness] runs-on: ubuntu-latest steps: