diff --git a/.github/actions/notify-slack/action.yml b/.github/actions/notify-slack/action.yml index e0ee0876..6a084e2c 100644 --- a/.github/actions/notify-slack/action.yml +++ b/.github/actions/notify-slack/action.yml @@ -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 - }, + } ] } ]