From 7bbb3eff7d9ccba9ce048f605eaaaeaf68d0fae1 Mon Sep 17 00:00:00 2001 From: varsill Date: Thu, 27 Apr 2023 11:51:34 +0200 Subject: [PATCH 1/2] Filter out the branches from forks from the performance test --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f98022599..874be1940 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -181,7 +181,15 @@ workflows: - get_deps - request_performance_test: type: approval + filters: + branches: + # Forked pull requests have CIRCLE_BRANCH set to pull/XXX + ignore: /pull\/[0-9]+/ - test_performance: + filters: + branches: + # Forked pull requests have CIRCLE_BRANCH set to pull/XXX + ignore: /pull\/[0-9]+/ requires: - get_deps - request_performance_test From fbfbd24b020a706757f8be1c273b0a21c33e9106 Mon Sep 17 00:00:00 2001 From: varsill Date: Thu, 27 Apr 2023 12:05:54 +0200 Subject: [PATCH 2/2] Remove comments from the CircleCI config --- .circleci/config.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 874be1940..4081e5c22 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -183,12 +183,10 @@ workflows: type: approval filters: branches: - # Forked pull requests have CIRCLE_BRANCH set to pull/XXX ignore: /pull\/[0-9]+/ - test_performance: filters: branches: - # Forked pull requests have CIRCLE_BRANCH set to pull/XXX ignore: /pull\/[0-9]+/ requires: - get_deps