From c2ff98559252f0f6f625f3547b1aa032cef902f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Fri, 7 Nov 2025 11:30:23 +0100 Subject: [PATCH] Fix CI trigger for system test modications Use bin/tests/system/**/* to detect changes to files not just directly inside the directory, but also all of its subdirectories. See https://docs.gitlab.com/ci/yaml/#ruleschanges (cherry picked from commit 0e3c24d7a7909365edeefd10a3284f2b29046a27) --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 498bc15abf..ef95cd16c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -304,7 +304,7 @@ stages: .rule_mr_system_tests: &rule_mr_system_tests - if: '$CI_MERGE_REQUEST_DIFF_BASE_SHA != null' changes: - - 'bin/tests/system/**' + - 'bin/tests/system/**/*' .rule_mr_manual: &rule_mr_manual - if: '$CI_MERGE_REQUEST_DIFF_BASE_SHA != null'