From 6b9ae1b04a5eef30a548e8853a002fdf888eec37 Mon Sep 17 00:00:00 2001
From: Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com>
Date: Wed, 8 Jun 2022 09:25:35 +0200
Subject: [PATCH] Do not run E2E tests on release branch in CCI (#23209)

---
 .circleci/config.yml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 33b8946bd01..b64074c4d5a 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -1227,7 +1227,9 @@ workflows:
             - be-deps
           filters:
             branches:
-              ignore: master
+              ignore:
+                - master
+                - release-**
           <<: *Matrix
 
       - build-uberjar-frontend:
@@ -1248,7 +1250,9 @@ workflows:
             - checkout
           filters:
             branches:
-              ignore: master
+              ignore:
+                - master
+                - release-**
 
       - fe-tests-cypress:
           matrix:
@@ -1308,4 +1312,6 @@ workflows:
             - checkout
           filters:
             branches:
-              ignore: master
+              ignore:
+                - master
+                - release-**
-- 
GitLab