refactor(ci): simplify filtering logic in CI pipeline by removing output variable

This commit is contained in:
taroj1205 2025-06-22 16:41:05 +12:00
parent 6103f7b1a7
commit b6b2174cc2
No known key found for this signature in database
GPG key ID: 0FCB6CFFE0981AB7

View file

@ -12,8 +12,6 @@ jobs:
check_changes: check_changes:
name: Check Changes name: Check Changes
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs:
exists: ${{ steps.filter.outputs.changes }}
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@ -22,8 +20,7 @@ jobs:
id: filter id: filter
with: with:
filters: | filters: |
relevant: exists:
- '**'
- '!*.md' - '!*.md'
- '!.gitignore' - '!.gitignore'
- '!.gitattributes' - '!.gitattributes'