From b2338892f4ab4dbce5bf1a297bcf0d7e01f59e73 Mon Sep 17 00:00:00 2001 From: Venkata Challa Date: Mon, 29 Jan 2024 11:59:09 +0000 Subject: [PATCH] Fixed webhook failures on slack notifications --- .github/workflows/manual.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index a3c571c95..bc8335b42 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -78,7 +78,7 @@ jobs: SLACK_COLOR: ${{env.SLACK_SUCCESS}} SLACK_TITLE: "Release Published to ${{github.event.inputs.environment}}: ${{steps.tag_id.outputs.release_name}}" SLACK_MESSAGE: ${{ fromJson( steps.tag_id.outputs.release_body) }} - SLACK_WEBHOOK: ${{steps.keyvault-yaml-secret.outputs.SLACK-RELEASE-NOTE-WEBHOOK}} + SLACK_WEBHOOK: ${{steps.fetch-secrets.outputs.SLACK-RELEASE-NOTE-WEBHOOK}} MSG_MINIMAL: true - name: Slack Notification @@ -88,4 +88,4 @@ jobs: SLACK_COLOR: ${{env.SLACK_FAILURE}} SLACK_TITLE: "Manual Release Failed: ${{steps.tag_id.outputs.release_name}}" SLACK_MESSAGE: Failure deploying ${{github.event.inputs.environment}} release - SLACK_WEBHOOK: ${{steps.keyvault-yaml-secret.outputs.SLACK-WEBHOOK}} + SLACK_WEBHOOK: ${{steps.fetch-secrets.outputs.SLACK-WEBHOOK}}