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') {
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 {