Skip to content

Commit

Permalink
corrected the json payload again
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy_xero committed Oct 17, 2024
1 parent 89ff9ef commit ab6395b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/actions/notify-slack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,26 +37,26 @@ runs:
payload: |
{
"channel": "#public-sdk-events",
"text": "${{inputs.heading_text}}"
"text": "${{inputs.heading_text}}",
"attachments": [
{
"color": "${{inputs.alert_type}}",
"fields": [
{
"title": "Repository",
"value": "${{github.repository}}"
"value": "${{github.repository}}",
"short": true
},
{
"title": "Job Status",
"value": "${{inputs.job_status}}"
"value": "${{inputs.job_status}}",
"short": true
},
{
"title": "commit",
"value": "${{github.sha}}"
"value": "${{github.sha}}",
"short": true
},
}
]
}
]
Expand Down

0 comments on commit ab6395b

Please sign in to comment.