From 0b4f0f7977d3cb7083177274896b9e09defa6fa7 Mon Sep 17 00:00:00 2001 From: Matt Kornfield Date: Tue, 22 Oct 2024 19:06:32 -0700 Subject: [PATCH] [TASK] Remove slack notifications for workflow runs GitOrigin-RevId: bc76d8ac317f8ab01f57362aa29e2acc3939317d --- .github/workflows/integration-tests.yml | 8 -------- .github/workflows/unit-tests.yml | 8 -------- 2 files changed, 16 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 6af013ac..ee7315c4 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -23,11 +23,3 @@ jobs: run: pytest -s -vv --cov src --cov-report term-missing tests-integration/ env: PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION: python - - uses: 8398a7/action-slack@v2 - with: - status: ${{ job.status }} - author_name: Integration Tests - only_mention_fail: here - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - if: always() diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 4d5f1342..a9a9aa72 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -26,11 +26,3 @@ jobs: flake8 --count --exit-zero --max-complexity=30 --max-line-length=120 --statistics src/ - name: Test run: pytest -s -vv --cov src --cov-report term-missing tests/ - - uses: 8398a7/action-slack@v2 - with: - status: ${{ job.status }} - author_name: Unit Test - only_mention_fail: here - env: - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} - if: always()