refactor(ci): update output variable in check_changes job for consistency with filtering logic

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

View file

@ -13,7 +13,7 @@ jobs:
name: Check Changes
runs-on: ubuntu-latest
outputs:
exists: ${{ steps.filter.outputs.exists }}
exists: ${{ steps.filter.outputs.changes }}
steps:
- uses: actions/checkout@v4
@ -22,11 +22,10 @@ jobs:
id: filter
with:
filters: |
exists:
- '!*.md'
- '!.gitignore'
- '!.gitattributes'
- '!.vscode/**'
- '!*.md'
- '!.gitignore'
- '!.gitattributes'
- '!.vscode/**'
quality_checks:
name: ${{ matrix.name }}