From a917a689b97f7cf88d5759e373c3df9de5082842 Mon Sep 17 00:00:00 2001 From: NymanRobin Date: Mon, 6 May 2024 20:40:08 +0300 Subject: [PATCH] Add slack notifiactions for image building failures Signed-off-by: NymanRobin --- .github/workflows/build-images-action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build-images-action.yml b/.github/workflows/build-images-action.yml index 17709ff3..b94e1b29 100644 --- a/.github/workflows/build-images-action.yml +++ b/.github/workflows/build-images-action.yml @@ -30,3 +30,13 @@ jobs: "BUILD_CONTAINER_IMAGE_GIT_REFERENCE": "${{ github.ref }}" } job_timeout: "1000" + - name: Slack Notification on Failure + if: ${{ failure() }} + uses: rtCamp/action-slack-notify@4e5fb42d249be6a45a298f3c9543b111b02f7907 # 2.3.0 + env: + SLACK_TITLE: 'GitHub Action Failed in ${{ github.repository }}' + SLACK_COLOR: '#FF0000' + SLACK_MESSAGE: 'The GitHub Action workflow failed for IPA downloader image build.' + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_CHANNEL: metal3-github-actions-notify + SLACK_USERNAME: metal3-github-actions-notify