From 5800638cc2cc9bb06c7ac052b87d6475828acd4b Mon Sep 17 00:00:00 2001 From: syoul Date: Tue, 17 Mar 2026 13:08:35 +0100 Subject: [PATCH] fix: quote all shell commands containing colons in YAML --- .woodpecker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index b7c5a1f..3c59685 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -98,7 +98,7 @@ steps: notify-failure: image: alpine:3.20 commands: - - echo "ECHEC pipeline #${CI_BUILD_NUMBER} sur commit ${CI_COMMIT_SHA:0:8}" - - echo "Branche: ${CI_COMMIT_BRANCH}" + - 'echo "ECHEC pipeline #${CI_BUILD_NUMBER} sur commit ${CI_COMMIT_SHA}"' + - 'echo "Branche: ${CI_COMMIT_BRANCH}"' when: status: failure