Remove unused slack notif (#7655)

This commit is contained in:
Matt Rubens 2025-09-04 01:06:08 -04:00 committed by GitHub
parent a0384f35d5
commit e1dfe25321
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) }}