From fb1c36f3b211b29c4354e3fb8636906886af2906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Kita?= Date: Thu, 27 Apr 2023 13:51:50 +0200 Subject: [PATCH] Do not launch performance test after merge to master (#550) * Filter out the branches from forks from the performance test --- .circleci/config.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4081e5c22..359c31560 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -183,11 +183,15 @@ workflows: type: approval filters: branches: - ignore: /pull\/[0-9]+/ + ignore: + - /pull\/[0-9]+/ + - /master/ - test_performance: filters: branches: - ignore: /pull\/[0-9]+/ + ignore: + - /pull\/[0-9]+/ + - /master/ requires: - get_deps - request_performance_test