Skip to content

Commit

Permalink
Update reusable-slack-notifs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cenevan authored May 17, 2024
1 parent 579ddb9 commit 7d678f7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/reusable-slack-notifs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
}
}
]
Expand Down

0 comments on commit 7d678f7

Please sign in to comment.