From df9d7d184fe179b4f7b12506b9c422ef744b47f5 Mon Sep 17 00:00:00 2001 From: ykim-1 Date: Fri, 27 Sep 2024 11:01:53 -0700 Subject: [PATCH] fix build result text syntax --- .github/workflows/integration-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index c5b0f478..ecc77c01 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -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",