From 21800a5a1c2795bc5d1499323d89ec574d8c4642 Mon Sep 17 00:00:00 2001 From: "Marcel S. Henselin" Date: Fri, 27 Mar 2026 11:52:30 +0100 Subject: [PATCH] chore: modify test action [skip ci] --- .github/actions/notify/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/notify/action.yaml b/.github/actions/notify/action.yaml index fe1fc703..2e72732e 100644 --- a/.github/actions/notify/action.yaml +++ b/.github/actions/notify/action.yaml @@ -61,11 +61,11 @@ runs: case "${{ inputs.status }}" in SUCCESS) STATUS_COLOR="006400/228b22" - ADD='{"decoratedText": {"startIcon": {"materialIcon": {"name": "check_circle"}},"text": "\($status)"}},' + ADD='{"decoratedText": {"startIcon": {"materialIcon": {"name": "check_circle"}},"text": "SUCCESS"}},' ;; FAILURE) STATUS_COLOR="8b0000/dc143c" - ADD='{"decoratedText": {"startIcon": {"materialIcon": {"name": "stop_circle"}},"text": "\($status)"}},' + ADD='{"decoratedText": {"startIcon": {"materialIcon": {"name": "stop_circle"}},"text": "FAILURE"}},' ;; *) STATUS_COLOR="483d8b/6495ed"