From 9612d2c1f414f60e791360a1148623a3f6173439 Mon Sep 17 00:00:00 2001 From: Techassi Date: Fri, 28 Aug 2026 09:50:36 +0200 Subject: [PATCH 1/2] fix(send-slack-notification): Handle multiline "failed tests" output --- send-slack-notification/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send-slack-notification/action.yaml b/send-slack-notification/action.yaml index acfa9f1..fad3eff 100644 --- a/send-slack-notification/action.yaml +++ b/send-slack-notification/action.yaml @@ -71,7 +71,7 @@ runs: [ -z "${TEST_RESULT:-}" ] && echo "The test-result input must be provided" && exit 1 [ -z "${TEST_HEALTH:-}" ] && echo "The test-health input must be provided" && exit 1 - echo "FAILED_TESTS=${FAILED_TESTS:-No failed tests}" | tee -a "$GITHUB_OUTPUT" + echo "FAILED_TESTS< Date: Fri, 28 Aug 2026 10:00:05 +0200 Subject: [PATCH 2/2] fix(send-slack-notification): Add missing -e to echo --- send-slack-notification/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send-slack-notification/action.yaml b/send-slack-notification/action.yaml index fad3eff..48349ee 100644 --- a/send-slack-notification/action.yaml +++ b/send-slack-notification/action.yaml @@ -71,7 +71,7 @@ runs: [ -z "${TEST_RESULT:-}" ] && echo "The test-result input must be provided" && exit 1 [ -z "${TEST_HEALTH:-}" ] && echo "The test-health input must be provided" && exit 1 - echo "FAILED_TESTS<