From dd95191d5a3b46b140c94aaadf58934f0ac46aee Mon Sep 17 00:00:00 2001 From: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> Date: Wed, 3 Jul 2024 16:33:37 -0700 Subject: [PATCH] [ci] filter out .github dir changes (#46426) just codeowner and github action changes; no need to run tests Signed-off-by: Lonnie Liu --- ci/pipeline/determine_tests_to_run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/pipeline/determine_tests_to_run.py b/ci/pipeline/determine_tests_to_run.py index 829ee79e2da82..a01acef5e4bc9 100644 --- a/ci/pipeline/determine_tests_to_run.py +++ b/ci/pipeline/determine_tests_to_run.py @@ -343,6 +343,8 @@ def get_commit_range(): RAY_CI_DASHBOARD_AFFECTED = 1 RAY_CI_RELEASE_TESTS_AFFECTED = 1 RAY_CI_ACCELERATED_DAG_AFFECTED = 1 + elif changed_file.startswith(".github/"): + pass else: print( "Unhandled source code change: {changed_file}".format(