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/
This commit is contained in:
Dan Fandrich 2023-04-28 10:28:06 -07:00
parent da9d9c3d1c
commit 6cfa1a42eb

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