From 37a42ef64905f8a01cbf8e96560ddb5d55f74ef4 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Tue, 7 Oct 2025 14:14:56 -0600 Subject: [PATCH] Fixing default env var value --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7ca5f81cae..95aa24c568 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -49,11 +49,11 @@ def runShell(String command){ def shouldRunCICheck() { // Define patterns for files that should not trigger CI def skipFilePatterns = [ - ~/^\.github\/.*/, // GitHub workflow files - ~/^docs\/.*/, // Documentation files - ~/^LICENSE$/, // License file - ~/^.*\.gitignore$/, // Git ignore files - ~/.*\.md$/ // Markdown files + /^\.github\/.*/, // GitHub workflow files + /^docs\/.*/, // Documentation files + /^LICENSE$/, // License file + /^.*\.gitignore$/, // Git ignore files + /.*\.md$/ // Markdown files ] try { @@ -1160,7 +1160,7 @@ pipeline { ck_git_creds = "${ck_git_creds}" gerrit_cred="${gerrit_cred}" DOCKER_BUILDKIT = "1" - SHOULD_RUN_CI = "true" + SHOULD_RUN_CI = "false" } stages{ stage("Determine CI Execution") {