From d52620bd693fae30999c703c60ded34603685337 Mon Sep 17 00:00:00 2001 From: Lonnie Liu Date: Wed, 19 Nov 2025 19:35:08 -0800 Subject: [PATCH] [ci] change CI test bot to use anyscale/ray rather than ray-project/ray Signed-off-by: Lonnie Liu --- release/ray_release/test_automation/state_machine.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/release/ray_release/test_automation/state_machine.py b/release/ray_release/test_automation/state_machine.py index a06338d37a46..6a950147b3f9 100644 --- a/release/ray_release/test_automation/state_machine.py +++ b/release/ray_release/test_automation/state_machine.py @@ -13,12 +13,14 @@ TestState, ) -RAY_REPO = "ray-project/ray" +# We track test issues on anyscale's ray fork repo. +RAY_REPO = "anyscale/ray" +AWS_SECRET_GITHUB = "ray_ci_github_bot_token" +WEEKLY_RELEASE_BLOCKER_TAG = "weekly-release-blocker" + BUILDKITE_ORGANIZATION = "ray-project" BUILDKITE_BISECT_PIPELINE = "release-tests-bisect" -AWS_SECRET_GITHUB = "ray_ci_github_token" AWS_SECRET_BUILDKITE = "ray_ci_buildkite_token" -WEEKLY_RELEASE_BLOCKER_TAG = "weekly-release-blocker" NO_TEAM = "none" TEAM = [ "core", @@ -26,6 +28,7 @@ "kuberay", "ml", "rllib", + "llm", "serve", ] MAX_BISECT_PER_DAY = 10 # Max number of bisects to run per day for all tests