Skip to content

Commit

Permalink
fix build result text syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ykim-akamai committed Sep 27, 2024
1 parent d6e1b53 commit df9d7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ jobs:
"fields": [
{
"type": "mrkdwn",
"text": "*Build Result:*\n${{ steps.integration-tests.outcome == 'success' && ':large_green_circle: Build Passed' || ':red_circle: Build Failed' }}"
"text": "*Build Result:*\n${{ needs.integration-tests.result == 'success' && ':large_green_circle: Build Passed' || ':red_circle: Build Failed' }}"
},
{
"type": "mrkdwn",
Expand Down

0 comments on commit df9d7d1

Please sign in to comment.