From 556ab291bc5574cc3f4d49a9c1f64c2d29f37cde Mon Sep 17 00:00:00 2001 From: Charles Swartz Date: Fri, 13 Sep 2024 15:20:08 -0400 Subject: [PATCH 1/2] Detect changes from the main branch --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f83cda7a..6c1018337 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: name: Check for changes in specific paths command: | set +e - git diff --name-only HEAD^ HEAD | grep '^.ci\|^.circleci\|^graph_adapter_tests\|^hamilton\|^plugin_tests\|^tests\|^requirements\|setup' > /dev/null + git diff --name-only origin/main...HEAD | grep '^.ci\|^.circleci\|^graph_adapter_tests\|^hamilton\|^plugin_tests\|^tests\|^requirements\|setup' > /dev/null if [ $? -eq 0 ]; then echo "Changes found in target paths." echo 'true' > /tmp/changes_detected From daa1146552c6895d8639bddda5526e6c16beb2b5 Mon Sep 17 00:00:00 2001 From: Charles Swartz Date: Fri, 13 Sep 2024 15:23:17 -0400 Subject: [PATCH 2/2] Empty commit to trigger multi commit testing