mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-07 00:04:37 +00:00
Fixing file matching regex
This commit is contained in:
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user