From a04c54ac28325e9dd420a6e570bdf7d5af5980ff Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 11 May 2021 17:25:05 -0700 Subject: [PATCH] devops: do not run workflows when all changes are browser-only (#6520) Drive-by: rename primary/secondary tests to `tests 1` and `tests 2` --- .github/workflows/tests_primary.yml | 4 +++- .github/workflows/tests_secondary.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests_primary.yml b/.github/workflows/tests_primary.yml index 13ae919d0a..5df4805566 100644 --- a/.github/workflows/tests_primary.yml +++ b/.github/workflows/tests_primary.yml @@ -1,4 +1,4 @@ -name: primary tests +name: "tests 1" on: push: @@ -6,6 +6,8 @@ on: - master - release-* pull_request: + paths-ignore: + - 'browser_patches/**' branches: - master - release-* diff --git a/.github/workflows/tests_secondary.yml b/.github/workflows/tests_secondary.yml index 9fee0c910e..e48cc5b3d4 100644 --- a/.github/workflows/tests_secondary.yml +++ b/.github/workflows/tests_secondary.yml @@ -1,4 +1,4 @@ -name: secondary tests +name: "tests 2" on: push: @@ -6,6 +6,8 @@ on: - master - release-* pull_request: + paths-ignore: + - 'browser_patches/**' types: [ labeled ] branches: - master