From ddae7974c2c1113ec63ccb4d1b43c48f23b28a8a Mon Sep 17 00:00:00 2001 From: Abhishek Agarwal <1477457+abhishekagarwal87@users.noreply.github.com> Date: Fri, 17 Feb 2023 09:56:17 +0530 Subject: [PATCH] Don't run UTs, ITs when there are only docs, helm and console changes. (#13812) * Don't run UTs, ITs for docs, helm and console changes * Test * right place * Revert test * Remove ITs from ignore list * Update unit-and-integration-tests-unified.yml * Update unit-and-integration-tests-unified.yml --- .../workflows/unit-and-integration-tests-unified.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/unit-and-integration-tests-unified.yml b/.github/workflows/unit-and-integration-tests-unified.yml index f4cada6d4e4..44bfbbc4a06 100644 --- a/.github/workflows/unit-and-integration-tests-unified.yml +++ b/.github/workflows/unit-and-integration-tests-unified.yml @@ -16,10 +16,20 @@ name: Unit & Integration tests CI on: push: + paths-ignore: + - 'docs/**' + - 'dev/**' + - 'helm/**' + - 'web-console/**' branches: - master - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches pull_request: + paths-ignore: + - 'docs/**' + - 'dev/**' + - 'helm/**' + - 'web-console/**' branches: - master - /^\d+\.\d+\.\d+(-\S*)?$/ # release branches