From e58d260e073e3e49b28dfeff8849ca55410364ae Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Thu, 4 Sep 2025 00:47:42 -0400 Subject: [PATCH] Remove unused slack notif --- .github/workflows/code-qa.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/code-qa.yml b/.github/workflows/code-qa.yml index ba85a01b21..0938e029b6 100644 --- a/.github/workflows/code-qa.yml +++ b/.github/workflows/code-qa.yml @@ -89,19 +89,3 @@ jobs: - name: Run integration tests working-directory: apps/vscode-e2e run: xvfb-run -a pnpm test:ci - - notify-slack-on-failure: - runs-on: ubuntu-latest - needs: [check-translations, knip, compile, unit-test, integration-test] - if: ${{ always() && github.event_name == 'push' && github.ref == 'refs/heads/main' && contains(needs.*.result, 'failure') }} - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Send Slack notification on failure - uses: ./.github/actions/slack-notify - with: - webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }} - channel: "#ci" - workflow-name: "Code QA" - failed-jobs: ${{ toJSON(needs) }}