From eea7f8de41c574f757f48489b725604f7fad75ec Mon Sep 17 00:00:00 2001 From: Alison Shao <54658187+alisonshao@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:00:31 -0700 Subject: [PATCH] [CI] Fix B200 runner label for scheduled runs (#20297) Co-authored-by: Alison Shao --- .github/workflows/pr-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index 29559a0b7..d77c0dc60 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -249,7 +249,7 @@ jobs: # Use kernel-build runner only when sgl_kernel changes are detected AND we're not in target_stage mode # (target_stage skips wheel builds, so we can't use custom kernels) # Use API-based detection (filter-api) for target_stage mode, otherwise use dorny/paths-filter (filter) - sgl_kernel="${{ steps.filter-api.outputs.sgl_kernel || steps.filter.outputs.sgl_kernel || steps.run-mode.outputs.run_all_tests }}" + sgl_kernel="${{ steps.filter-api.outputs.sgl_kernel || steps.filter.outputs.sgl_kernel }}" target_stage="${{ inputs.target_stage }}" if [[ "$sgl_kernel" == "true" && -z "$target_stage" ]]; then echo "b200_runner=4-gpu-b200-kernel" >> $GITHUB_OUTPUT