]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CI: use another glob syntax for matching files on Appveyor
authorDan Fandrich <dan@coneharvesters.com>
Fri, 28 Apr 2023 17:28:06 +0000 (10:28 -0700)
committerDan Fandrich <dan@coneharvesters.com>
Fri, 28 Apr 2023 17:31:28 +0000 (10:31 -0700)
The previous globbing syntax was not matching files recursively in
directories, so try appending a /* to more closely match the examples at
https://www.appveyor.com/docs/how-to/filtering-commits/

appveyor.yml

index 66d81406ce2cebab058426f19339d29f19a2be51..dff4c195f62c237d7c1a7edaf291d673a96437dd 100644 (file)
@@ -360,11 +360,11 @@ branches:
 skip_commits:
   files:
     - '.azure-pipelines.yml'
-    - '.circleci/**'
+    - '.circleci/**/*'
     - '.cirrus.yml'
-    - '.github/**'
-    - 'packages/**'
-    - 'plan9/**'
+    - '.github/**/*'
+    - 'packages/**/*'
+    - 'plan9/**/*'
 
 artifacts:
   - path: '**/curl.exe'