From 62f7fb3ccf2db11431dbfe8ab4b7b7ddbf4cdbb8 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Fri, 22 Aug 2025 15:01:54 +0200 Subject: [PATCH] Update action.yml --- action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 5a9f8ff..ac4dd50 100644 --- a/action.yml +++ b/action.yml @@ -335,8 +335,12 @@ runs: if [ $POST_STATUS -ne 0 ]; then echo "❌ Post-test failed" | tee -a "$LOG_FILE" echo "Exit Code: 1" >> "$LOG_FILE" - exec >/dev/null 2>&1 - kill 0 || true + exec 1>/dev/null + exec 2>/dev/null + + # 💀 Stopper tous les jobs de ce shell (silence total) + kill 0 >/dev/null 2>&1 || true + exit 1 fi fi