From 7d678f727b1906dbf0af4e22bc5e543d2b39d873 Mon Sep 17 00:00:00 2001 From: cenevan <92879012+cenevan@users.noreply.github.com> Date: Fri, 17 May 2024 14:35:11 -0700 Subject: [PATCH] Update reusable-slack-notifs.yml --- .github/workflows/reusable-slack-notifs.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/reusable-slack-notifs.yml b/.github/workflows/reusable-slack-notifs.yml index da3bb89..136b1d8 100644 --- a/.github/workflows/reusable-slack-notifs.yml +++ b/.github/workflows/reusable-slack-notifs.yml @@ -35,23 +35,23 @@ jobs: channel-id: ${{ secrets.channel-name }} payload: | { - "text": "${{ github.event.inputs.short-desc }}", + "text": "${{ inputs.short-desc }}", "blocks": [ { "type": "divider" }, { "type": "image", "title": { "type": "plain_text", - "text": "${{ github.event.inputs.title }}" + "text": "${{ inputs.title }}" }, - "image_url": "${{ github.event.inputs.img-url }}", - "alt_text": "${{ github.event.inputs.img-alt-text }}" + "image_url": "${{ inputs.img-url }}", + "alt_text": "${{ inputs.img-alt-text }}" }, { "type": "section", "text": { "type": "mrkdwn", - "text": "${{ github.event.inputs.short-desc }}" + "text": "${{ inputs.short-desc }}" } } ]