From 4fe19c52449a7612d4ca48d822085015e2aea2db Mon Sep 17 00:00:00 2001 From: Federico Gimenez Date: Wed, 25 Sep 2024 09:50:20 +0200 Subject: [PATCH] feat: add slack notification for hive tests --- .github/workflows/hive.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/hive.yml b/.github/workflows/hive.yml index d7f891915592..3155fd4af2d1 100644 --- a/.github/workflows/hive.yml +++ b/.github/workflows/hive.yml @@ -264,3 +264,9 @@ jobs: with: webhook-url: ${{ secrets.RETH_ALERTS_WEBHOOK }} content: "Failed run: https://github.com/paradigmxyz/reth/actions/runs/${{ github.run_id }}" + - name: Slack Webhook Action + uses: rtCamp/action-slack-notify@v2 + env: + SLACK_COLOR: ${{ job.status }} + SLACK_MESSAGE: "Failed run: https://github.com/paradigmxyz/reth/actions/runs/${{ github.run_id }}" + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }}