From a2e7dc5a44ded6d119dfff15527b554522b13554 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Tue, 7 Oct 2025 12:30:18 -0600 Subject: [PATCH] Reverting test updating regex file patterns to use strings instead of regex literal syntax. --- Jenkinsfile | 10 +++++----- docs/license.rst | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 39c7af182a..a8feac4b4f 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 { diff --git a/docs/license.rst b/docs/license.rst index d52a35fc50..1e5389ccc1 100644 --- a/docs/license.rst +++ b/docs/license.rst @@ -5,7 +5,7 @@ .. _license: ******************************************************************** -License test +License ******************************************************************** .. include:: ../LICENSE \ No newline at end of file