From f9b8221da6e4b139e70e4d0e64ef8d1df5c5294c Mon Sep 17 00:00:00 2001 From: Steve Eardley Date: Tue, 7 Mar 2023 11:22:05 +0000 Subject: [PATCH] Exclude release branches from CI builds --- .circleci/config.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c301e360f9..908c07de57 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -28,9 +28,8 @@ jobs: workflows: unit_tests: - triggers: - branches: - ignore: - - /release\/.*/ jobs: - - build-and-test \ No newline at end of file + - build-and-test + branches: + ignore: + - /release\/.*/ \ No newline at end of file