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:
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'