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"