From 2497f8f1dae091a5fe338ea2a677dc6705f37918 Mon Sep 17 00:00:00 2001 From: Lukas Panhorst Date: Tue, 30 Jul 2024 21:45:53 +0200 Subject: [PATCH] check for changes should be true --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e34049098..31026467f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -32,7 +32,7 @@ jobs: changesOutsideDocsCI=false for file in $changed_files; do - if [[ $file -ne ".github/"* && $file -ne "doc/"* ]]; then + if [[ $file != .github/* && $file != doc/* ]]; then echo "file: $file is not part of CI or docs" echo "Start testing pipeline." changesOutsideDocsCI=true