From 022ebb106a2890397d3ac9ff9b3db5cc369da99c Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Wed, 15 Jun 2022 10:24:07 -0700 Subject: [PATCH] GitLab CI: Fix our documentation globs The correct glob pattern for a directory and its subdirectories is "**/*". Use that in the change rules for the Documentation job. --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2f00e53f09..1bd87a0bc5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -430,13 +430,13 @@ Documentation: rules: - if: '$CI_PIPELINE_SOURCE == "push" && $CI_PROJECT_URL =~ /.*gitlab.com\/wireshark\/wireshark/' changes: - - "docbook/**" - - "epan/wslua/**" + - "docbook/**/*" + - "epan/wslua/**/*" when: always - if: '$CI_PIPELINE_SOURCE == "push"' changes: - - "docbook/**" - - "epan/wslua/**" + - "docbook/**/*" + - "epan/wslua/**/*" when: manual script: # XXX We might want to move this to wireshark-ubuntu-dev or debian-setup.sh.