From c64b34cc59f09a442a0850b83eb150b0c87c3393 Mon Sep 17 00:00:00 2001 From: taroj1205 Date: Sun, 22 Jun 2025 17:51:43 +1200 Subject: [PATCH] fix(ci): standardize filter syntax in CI pipeline configuration --- .github/workflows/ci-pipeline.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index abd8c4e..70d5ca4 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -25,11 +25,11 @@ jobs: with: filters: | relevant: - !**.md - !.gitignore - !.gitattributes - !.vscode/** - !.env.example + - '!**.md' + - '!.gitignore' + - '!.gitattributes' + - '!.vscode/**' + - '!.env.example' setup: name: Setup Dependencies