From b6b2174cc2ddca6262f33a0325db0bdd9bbc9ad6 Mon Sep 17 00:00:00 2001 From: taroj1205 Date: Sun, 22 Jun 2025 16:41:05 +1200 Subject: [PATCH] refactor(ci): simplify filtering logic in CI pipeline by removing output variable --- .github/workflows/ci-pipeline.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 239cb22..3be4c1a 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -12,8 +12,6 @@ jobs: check_changes: name: Check Changes runs-on: ubuntu-latest - outputs: - exists: ${{ steps.filter.outputs.changes }} steps: - uses: actions/checkout@v4 @@ -22,8 +20,7 @@ jobs: id: filter with: filters: | - relevant: - - '**' + exists: - '!*.md' - '!.gitignore' - '!.gitattributes'