From 7a27e798ca2d8f6bfccf75507360d702e03f810d Mon Sep 17 00:00:00 2001 From: Liangsheng Yin Date: Mon, 4 Aug 2025 05:12:20 +0800 Subject: [PATCH] [CI] Do not trigger pd-disaggregation CI in draft PR (#8737) --- .github/workflows/pr-test-pd-router.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-test-pd-router.yml b/.github/workflows/pr-test-pd-router.yml index d433dba07..0ee083161 100644 --- a/.github/workflows/pr-test-pd-router.yml +++ b/.github/workflows/pr-test-pd-router.yml @@ -26,7 +26,9 @@ permissions: jobs: test-disaggregation: - if: github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request' + if: (github.repository == 'sgl-project/sglang' || github.event_name == 'pull_request') && + github.event.pull_request.draft == false && + needs.check-changes.outputs.src == 'true' runs-on: [h200] timeout-minutes: 45