From ecc22da50b2e99acbcce92e4fbf4c369a7d4ac37 Mon Sep 17 00:00:00 2001 From: Huang-Ming Huang Date: Tue, 19 May 2026 18:57:12 +0000 Subject: [PATCH] Normalize skipped platform build notifications --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index b0d923bd3..7b96a03ac 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -116,5 +116,5 @@ jobs: webhook-url: ${{ secrets.WEBHOOK_URL }} notification-type: 1 workflow-name: "CDT Build & Test" - job-results: "discover:${{ needs.discover.result }} build-platforms:${{ needs.build-platforms.result }} build:${{ needs.build.result }}" + job-results: "discover:${{ needs.discover.result }} build-platforms:${{ needs.build-platforms.result == 'skipped' && 'success' || needs.build-platforms.result }} build:${{ needs.build.result }}" github-context: ${{ toJSON(github) }}