Browse Source

CI: use another glob syntax for matching files on Appveyor

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/
Dan Fandrich 11 months ago
parent
commit
6cfa1a42eb
1 changed files with 4 additions and 4 deletions
  1. 4 4
      appveyor.yml

+ 4 - 4
appveyor.yml

@@ -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'