1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

Add slack notify when deploying web QA (#6724)

This commit is contained in:
Michał Chęciński
2023-11-02 17:30:17 +01:00
committed by GitHub
parent db221dee05
commit 0a7fcddd5a
2 changed files with 32 additions and 0 deletions

View File

@@ -58,3 +58,18 @@ jobs:
--connection-string "${{ steps.retrieve-secrets.outputs.sa-bitwarden-web-vault-dev-key-temp }}" \
--overwrite \
--no-progress
notify:
name: Notify Slack with result
runs-on: ubuntu-22.04
if: always()
needs: azure-deploy
steps:
- uses: bitwarden/gh-actions/report-deployment-status-to-slack@master
with:
project: Web
environment: EU QA Cloud
tag: ${{ github.event.inputs.tag }}
slack-channel: team-eng-qa-devops
failure: ${{ needs.azure-deploy.result == 'failure' }}
AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}