Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
michalchecinski authored Nov 2, 2023
1 parent 83b83f4 commit 3ffb7df
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions .github/workflows/test-report-deployment-status-to-slack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 3ffb7df

Please sign in to comment.