From 2fb922a46977ac40f125f8f41045882270af85bc Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 6 Jan 2024 14:49:59 +0530 Subject: [PATCH] ci(config.yml): have circle ci run on non-main branches (supports `litellm_*`) --- .circleci/config.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 07f485b934df..25451f47bdf5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -151,7 +151,17 @@ workflows: version: 2 build_and_test: jobs: - - local_testing + - local_testing: + filters: + branches: + only: + - main + - /litellm_.*/ - publish_to_pypi: requires: - local_testing + filters: + branches: + only: + - main + - /litellm_.*/ \ No newline at end of file