From def64a867de6e73fbaf984521fa9c230ddf9e734 Mon Sep 17 00:00:00 2001 From: lenape Date: Sun, 3 Aug 2025 01:41:38 +0000 Subject: [PATCH] automated terminal push --- infrastructure/foundation/Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/infrastructure/foundation/Jenkinsfile b/infrastructure/foundation/Jenkinsfile index 6e1081e..6b417d4 100644 --- a/infrastructure/foundation/Jenkinsfile +++ b/infrastructure/foundation/Jenkinsfile @@ -213,7 +213,7 @@ pipeline { stage('🔍 SonarQube Analysis') { when { allOf { - not { params.SKIP_SONAR } + expression { !params.SKIP_SONAR } expression { params.ACTION != 'cleanup' } } } @@ -296,7 +296,7 @@ sonar.tags=terraform,infrastructure,enterprise-cicd stage('🎯 Quality Gate') { when { allOf { - not { params.SKIP_SONAR } + expression { !params.SKIP_SONAR } expression { params.ACTION != 'cleanup' } } } @@ -362,7 +362,7 @@ sonar.tags=terraform,infrastructure,enterprise-cicd when { allOf { expression { params.ACTION == 'apply' } - not { params.SKIP_BOOTSTRAP } + expression { !params.SKIP_BOOTSTRAP } } } steps { @@ -517,7 +517,7 @@ EOF when { allOf { expression { params.ACTION == 'apply' } - not { params.AUTO_APPROVE } + expression { !params.AUTO_APPROVE } } } steps {