From 033dedd5aad22b016a003a29cae30f8c0efe832f 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/tests.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5f5311d5..78a424e6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,17 +35,3 @@ jobs: python -m pip install tox - name: flake8 run: tox -e flake8 - - notify: - needs: [unit-tests, style-checks] - if: always() - runs-on: ubuntu-20.04 - steps: - - uses: technote-space/workflow-conclusion-action@v2 - - uses: 8398a7/action-slack@v2 - with: - status: ${{ env.WORKFLOW_CONCLUSION }} - author_name: Branch Checks - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}