From 9fa4423dc45454f909a19eba80a923b79752e096 Mon Sep 17 00:00:00 2001 From: shirady <57721533+shirady@users.noreply.github.com> Date: Tue, 29 Apr 2025 11:26:38 +0300 Subject: [PATCH] CI | Publish Nightly Result in Slack Signed-off-by: shirady <57721533+shirady@users.noreply.github.com> --- .github/workflows/test-aws-sdk-clients.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/test-aws-sdk-clients.yaml b/.github/workflows/test-aws-sdk-clients.yaml index 778f61328b..916a0d9d57 100644 --- a/.github/workflows/test-aws-sdk-clients.yaml +++ b/.github/workflows/test-aws-sdk-clients.yaml @@ -24,4 +24,14 @@ jobs: cd ./noobaa-core make test-aws-sdk-clients + - name: Message Slack Webhook + # we will uncomment this after we test it in the CI + # if: ${{ failure() }} + uses: slackapi/slack-github-action@v2.0.0 + with: + webhook: ${{ secrets.SLACK_WEBHOOK_URL }} + webhook-type: incoming-webhook + payload: | + text: "AWS SDK Clients Run result: ${{ job.status }}" +