From 6cfa1a42eb970c4520b059e94549aac772b0dc73 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Fri, 28 Apr 2023 10:28:06 -0700 Subject: 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/ --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 66d81406c..dff4c195f 100644 --- a/appveyor.yml +++ b/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' -- cgit v1.2.1