From 722c4737fc874ad8282cd9fc944526d7c04e0e8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ch=C4=99ci=C5=84ski?= Date: Mon, 26 Aug 2024 15:00:31 +0200 Subject: [PATCH] Send Slack notifications for DEV env (#10632) --- .github/workflows/deploy-web.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml index 27475709b63..7551538b3a1 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -256,7 +256,7 @@ jobs: - setup - artifact-check runs-on: ubuntu-22.04 - if: ${{ always() && contains( inputs.environment , 'QA' ) }} + if: ${{ always() && ( contains( inputs.environment , 'QA' ) || contains( inputs.environment , 'DEV' ) ) }} outputs: channel_id: ${{ steps.slack-message.outputs.channel_id }} ts: ${{ steps.slack-message.outputs.ts }} @@ -407,7 +407,7 @@ jobs: notify: name: Notify Slack with result runs-on: ubuntu-22.04 - if: ${{ always() && contains( inputs.environment , 'QA' ) }} + if: ${{ always() && ( contains( inputs.environment , 'QA' ) || contains( inputs.environment , 'DEV' ) ) }} needs: - setup - notify-start