From 3ffb7df88130098b886c75c1e67d63a9489acfb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Ch=C4=99ci=C5=84ski?= Date: Thu, 2 Nov 2023 17:36:11 +0100 Subject: [PATCH] Fix --- ...test-report-deployment-status-to-slack.yml | 36 +++++++++++-------- 1 file changed, 21 insertions(+), 15 deletions(-) diff --git a/.github/workflows/test-report-deployment-status-to-slack.yml b/.github/workflows/test-report-deployment-status-to-slack.yml index c6ea9e04..e29237ba 100644 --- a/.github/workflows/test-report-deployment-status-to-slack.yml +++ b/.github/workflows/test-report-deployment-status-to-slack.yml @@ -8,21 +8,27 @@ on: jobs: test-report: - uses: ./.github/workflows/_report_status_to_slack.yml - with: - environment: US QA Cloud - tag: test-workflow - slack-channel: devops-alerts - failure: false - AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }} + name: Test Slack report failure + runs-on: ubuntu-22.04 + steps: + - uses: ./report-deployment-status-to-slack + with: + environment: US QA Cloud + tag: test-workflow + slack-channel: devops-alerts + failure: false + AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }} test-report-failure: - uses: ./.github/workflows/_report_status_to_slack.yml - with: - project: Server - environment: US QA Cloud - tag: test-workflow-failure - slack-channel: devops-alerts - failure: true - AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }} + name: Test Slack report failure + runs-on: ubuntu-22.04 + steps: + - uses: ./report-deployment-status-to-slack + with: + project: Server + environment: US QA Cloud + tag: test-workflow-failure + slack-channel: devops-alerts + failure: true + AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}