From 63a45d2b31c43f774acee13b5233a7ef6194e152 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 14 Mar 2024 09:47:38 +0000 Subject: [PATCH] Remove slack notifications (#521) This PR removes Slack notifications; the GitHub Action we were using is unmaintained and is likely to become non-functional soon. --- .github/workflows/weekly-scheduled-tests.yml | 28 -------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/weekly-scheduled-tests.yml b/.github/workflows/weekly-scheduled-tests.yml index 4b30c8eb..4c1ccc91 100644 --- a/.github/workflows/weekly-scheduled-tests.yml +++ b/.github/workflows/weekly-scheduled-tests.yml @@ -76,31 +76,3 @@ jobs: - name: Run the test suite (Windows/macOS) run: cd testdir && python -X faulthandler -m unittest discover -v traits_futures if: matrix.os != 'ubuntu-latest' - - notify-on-failure: - needs: [test-all-platform-python-combinations, test-bleeding-edge] - if: failure() - runs-on: ubuntu-latest - steps: - - name: Notify Slack channel on failure - uses: voxmedia/github-action-slack-notify-build@v1 - with: - channel_id: ${{ secrets.ETS_SLACK_CHANNEL_ID }} - status: FAILED - color: danger - env: - SLACK_BOT_TOKEN: ${{ secrets.SLACK_ACTION_SECRET }} - - notify-on-success: - needs: [test-all-platform-python-combinations, test-bleeding-edge] - if: success() - runs-on: ubuntu-latest - steps: - - name: Notify Slack channel on success - uses: voxmedia/github-action-slack-notify-build@v1 - with: - channel_id: ${{ secrets.ETS_BOTS_SLACK_CHANNEL_ID }} - status: SUCCESS - color: good - env: - SLACK_BOT_TOKEN: ${{ secrets.SLACK_ACTION_SECRET }}