From 071d94e6af636b7a5da1e7257017ee82e0bba259 Mon Sep 17 00:00:00 2001 From: erezrokah Date: Tue, 18 Nov 2025 14:43:35 +0000 Subject: [PATCH] chore: Alert on failed CLI and Scaffold releases --- .github/workflows/release_cli.yml | 10 ++++++++++ .github/workflows/release_scaffold.yml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/.github/workflows/release_cli.yml b/.github/workflows/release_cli.yml index cd6657473e5a03..220610f18707a7 100644 --- a/.github/workflows/release_cli.yml +++ b/.github/workflows/release_cli.yml @@ -128,3 +128,13 @@ jobs: body: Updates the CLI latest version to ${{steps.split.outputs.version}} labels: automerge author: cq-bot + - name: Slack Notify + uses: ravsamhq/notify-slack-action@be814b201e233b2dc673608aa46e5447c8ab13f2 + if: always() + with: + status: ${{ job.status }} + notify_when: "failure" + notification_title: "Failed to release CLI ${{ steps.split.outputs.version }}" + footer: "<{repo_url}|{repo}>" + env: + SLACK_WEBHOOK_URL: ${{ secrets.ALERTS_INTEGRATIONS_SLACK_WEBHOOK_URL }} diff --git a/.github/workflows/release_scaffold.yml b/.github/workflows/release_scaffold.yml index 82744092dd3004..350e90978cb9f4 100644 --- a/.github/workflows/release_scaffold.yml +++ b/.github/workflows/release_scaffold.yml @@ -108,3 +108,13 @@ jobs: body: Updates Scaffold latest version to ${{steps.split.outputs.version}} labels: automerge author: cq-bot + - name: Slack Notify + uses: ravsamhq/notify-slack-action@be814b201e233b2dc673608aa46e5447c8ab13f2 + if: always() + with: + status: ${{ job.status }} + notify_when: "failure" + notification_title: "Failed to release Scaffold ${{ steps.split.outputs.version }}" + footer: "<{repo_url}|{repo}>" + env: + SLACK_WEBHOOK_URL: ${{ secrets.ALERTS_INTEGRATIONS_SLACK_WEBHOOK_URL }}