From f0d5398f7ca07d73b691f4b1ae37f20951d1276d Mon Sep 17 00:00:00 2001 From: Vince Grassia <593223+vgrassia@users.noreply.github.com> Date: Wed, 20 Dec 2023 18:32:51 -0500 Subject: [PATCH] Update workflow to use new report action (#7296) --- .github/workflows/deploy-web.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-web.yml b/.github/workflows/deploy-web.yml index e71de40eae2..7e660e36583 100644 --- a/.github/workflows/deploy-web.yml +++ b/.github/workflows/deploy-web.yml @@ -98,8 +98,12 @@ jobs: - setup runs-on: ubuntu-22.04 if: always() + outputs: + channel_id: ${{ steps.slack-message.outputs.channel_id }} + ts: ${{ steps.slack-message.outputs.ts }} steps: - uses: bitwarden/gh-actions/report-deployment-status-to-slack@main + id: slack-message with: project: Clients environment: ${{ needs.setup.outputs.environment-name }} @@ -242,6 +246,7 @@ jobs: runs-on: ubuntu-22.04 if: always() needs: + - notify-start - azure-deploy - setup steps: @@ -250,7 +255,8 @@ jobs: project: Clients environment: ${{ needs.setup.outputs.environment-name }} tag: ${{ inputs.branch-or-tag }} - slack-channel: team-eng-qa-devops + slack-channel: ${{ needs.notify-start.outputs.channel_id }} event: ${{ needs.azure-deploy.result }} url: https://github.com/bitwarden/clients/actions/runs/${{ github.run_id }} + update-ts: ${{ needs.notify-start.outputs.ts }} AZURE_KV_CI_SERVICE_PRINCIPAL: ${{ secrets.AZURE_KV_CI_SERVICE_PRINCIPAL }}