From f393ac7a393f3366d2acd591094de4820ac0741b Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Thu, 15 May 2025 13:45:02 +0100 Subject: [PATCH] Remove slack notification that uses unsupported action --- .github/workflows/ets-from-source.yml | 28 --------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/ets-from-source.yml b/.github/workflows/ets-from-source.yml index 1ebe3662b..9ef88dbfc 100644 --- a/.github/workflows/ets-from-source.yml +++ b/.github/workflows/ets-from-source.yml @@ -49,31 +49,3 @@ jobs: - name: Run tests (not Linux) if: matrix.os != 'ubuntu-latest' run: edm run -- python etstool.py test --toolkit=${{ matrix.toolkit }} - - notify-on-failure: - needs: test-with-edm - 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-with-edm - 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 }}