From 3dfc9fb8d2e0a0a797bbd621c3c3d080bba499d4 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Tue, 7 Oct 2025 12:53:19 -0600 Subject: [PATCH] Fixing file matching regex --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a8feac4b4f..7ca5f81cae 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 {