Skip to content

Commit

Permalink
updated the status field
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeet-joy_xero committed Oct 18, 2024
1 parent 6e1cacd commit bad552d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/actions/notify-slack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ runs:
"elements": [
{
"type": "text",
"text": "${{inputs.heading_text}}",
"text": "${{inputs.heading_text}} ",
"style": {
"bold": true
}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
heading_text: "Publish job has succeeded !"
alert_type: "thumbsup"
job_status: ${{job.status}}
job_status: "Success"
XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}}
job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"
button_type: "primary"
Expand All @@ -75,7 +75,7 @@ jobs:
with:
heading_text: "Publish job has failed !"
alert_type: "alert"
job_status: ${{job.status}}
job_status: "Failed"
XERO_SLACK_WEBHOOK_URL: ${{secrets.XERO_SLACK_WEBHOOK_URL}}
job_url: "https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}"
button_type: "danger"

0 comments on commit bad552d

Please sign in to comment.