Skip to content

Commit

Permalink
test: Fix slack payload in integration workflow (#649)
Browse files Browse the repository at this point in the history
  • Loading branch information
ykim-1 authored Oct 3, 2024
1 parent 524fa64 commit 3f996eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,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 3f996eb

Please sign in to comment.