From 0a709cfe02d8b97d4c835aa07bc5dc4f6ab9e461 Mon Sep 17 00:00:00 2001 From: Baizhou Zhang Date: Thu, 2 Apr 2026 22:40:33 -0700 Subject: [PATCH] [Workflow] Avoid triggering nightly tests in kernel bump workflow (#22010) --- .../bot-bump-kernel-version-to-sglang.yml | 40 ------------------- 1 file changed, 40 deletions(-) diff --git a/.github/workflows/bot-bump-kernel-version-to-sglang.yml b/.github/workflows/bot-bump-kernel-version-to-sglang.yml index 817889846..b26192aba 100644 --- a/.github/workflows/bot-bump-kernel-version-to-sglang.yml +++ b/.github/workflows/bot-bump-kernel-version-to-sglang.yml @@ -58,43 +58,3 @@ jobs: GH_TOKEN: ${{ secrets.GH_PAT_FOR_PULL_REQUEST }} run: | bash scripts/release/commit_and_pr_kernel_to_sglang.sh "$KERNEL_VERSION" "$BRANCH_NAME" - - run-nightly-tests-nvidia: - needs: bump-kernel-version-to-sglang - if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true' - uses: ./.github/workflows/nightly-test-nvidia.yml - with: - ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }} - secrets: inherit - - run-nightly-tests-amd: - needs: bump-kernel-version-to-sglang - if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true' - uses: ./.github/workflows/nightly-test-amd.yml - with: - ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }} - secrets: inherit - - run-nightly-tests-npu: - needs: bump-kernel-version-to-sglang - if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true' - uses: ./.github/workflows/nightly-test-npu.yml - with: - ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }} - secrets: inherit - - run-pr-tests-xeon: - needs: bump-kernel-version-to-sglang - if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true' - uses: ./.github/workflows/pr-test-xeon.yml - with: - ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }} - secrets: inherit - - run-pr-tests-xpu: - needs: bump-kernel-version-to-sglang - if: needs.bump-kernel-version-to-sglang.outputs.needs_sync == 'true' - uses: ./.github/workflows/pr-test-xpu.yml - with: - ref: ${{ needs.bump-kernel-version-to-sglang.outputs.branch_name }} - secrets: inherit