From e4c6d9f91941befc90e7e9acd44f8827549e5bed Mon Sep 17 00:00:00 2001 From: ludamad Date: Fri, 17 May 2024 16:27:44 -0400 Subject: [PATCH 1/2] chore(ci): only run circleci on master --- .circleci/config.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 534fe6bec59..5f11b1aef4d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,4 @@ -# This file uses YAML anchors and aliases to prevent repetition of blocks of config: +v# This file uses YAML anchors and aliases to prevent repetition of blocks of config: # https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/ # # Two primary anchors are checkout and setup_env, called as the first step of almost all jobs: @@ -483,6 +483,9 @@ workflows: # # Used to generate a dynamic 'system' workflow # # This is rewritten to 'system' on the real workflow (otherwise this is ignored by circleci) # equal: [NEVER, << pipeline.parameters.workflow >>] + when: + and: + - equal: [ master, << pipeline.git.branch >> ] jobs: # Noir - noir-x86_64: *defaults From b4d6e9d95c7bbaef477c9192a810df22903fd0d8 Mon Sep 17 00:00:00 2001 From: ludamad Date: Fri, 17 May 2024 16:28:23 -0400 Subject: [PATCH 2/2] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5f11b1aef4d..361d11a9a72 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,4 @@ -v# This file uses YAML anchors and aliases to prevent repetition of blocks of config: +# This file uses YAML anchors and aliases to prevent repetition of blocks of config: # https://support.atlassian.com/bitbucket-cloud/docs/yaml-anchors/ # # Two primary anchors are checkout and setup_env, called as the first step of almost all jobs: