automated terminal push

This commit is contained in:
lenape
2025-08-03 01:41:38 +00:00
parent 81b810d598
commit def64a867d

View File

@@ -213,7 +213,7 @@ pipeline {
stage('🔍 SonarQube Analysis') { stage('🔍 SonarQube Analysis') {
when { when {
allOf { allOf {
not { params.SKIP_SONAR } expression { !params.SKIP_SONAR }
expression { params.ACTION != 'cleanup' } expression { params.ACTION != 'cleanup' }
} }
} }
@@ -296,7 +296,7 @@ sonar.tags=terraform,infrastructure,enterprise-cicd
stage('🎯 Quality Gate') { stage('🎯 Quality Gate') {
when { when {
allOf { allOf {
not { params.SKIP_SONAR } expression { !params.SKIP_SONAR }
expression { params.ACTION != 'cleanup' } expression { params.ACTION != 'cleanup' }
} }
} }
@@ -362,7 +362,7 @@ sonar.tags=terraform,infrastructure,enterprise-cicd
when { when {
allOf { allOf {
expression { params.ACTION == 'apply' } expression { params.ACTION == 'apply' }
not { params.SKIP_BOOTSTRAP } expression { !params.SKIP_BOOTSTRAP }
} }
} }
steps { steps {
@@ -517,7 +517,7 @@ EOF
when { when {
allOf { allOf {
expression { params.ACTION == 'apply' } expression { params.ACTION == 'apply' }
not { params.AUTO_APPROVE } expression { !params.AUTO_APPROVE }
} }
} }
steps { steps {