From b853e2c41b790b9fadee501524a6b61972aa0bd0 Mon Sep 17 00:00:00 2001 From: Alison Shao <54658187+alisonshao@users.noreply.github.com> Date: Thu, 9 Apr 2026 22:32:09 -0500 Subject: [PATCH] [CI] Remove Slack notification from ci-auto-bisect workflow (#22483) Co-authored-by: Alison Shao --- .github/workflows/ci-auto-bisect.yml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/.github/workflows/ci-auto-bisect.yml b/.github/workflows/ci-auto-bisect.yml index 3a6d3b901..3c77b5f1e 100644 --- a/.github/workflows/ci-auto-bisect.yml +++ b/.github/workflows/ci-auto-bisect.yml @@ -64,22 +64,3 @@ jobs: name: ci-auto-bisect-${{ github.run_number }} path: scripts/ci_monitor/bisect_results.json retention-days: 14 - - - name: Post to Slack - if: always() - env: - SGLANG_DIFFUSION_SLACK_TOKEN: ${{ secrets.SGLANG_DIFFUSION_SLACK_TOKEN }} - run: | - cd scripts/ci_monitor - - # Report if the bisect step itself failed - if [ "${{ steps.bisect.outcome }}" = "failure" ]; then - echo "::error::Auto bisect analysis failed - check logs above" - fi - - if [ -f bisect_results.json ] && [ -n "$SGLANG_DIFFUSION_SLACK_TOKEN" ]; then - pip install slack_sdk - python3 post_bisect_to_slack.py --report-file bisect_results.json - else - echo "Bisect results or Slack token not available, skipping notification" - fi