Skip to content

Commit

Permalink
[Infra] Don't require firestore check on docs changed (#14176)
Browse files Browse the repository at this point in the history
  • Loading branch information
ncooke3 authored Nov 26, 2024
1 parent a834162 commit e3c1d07
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/firestore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,22 @@ jobs:
# Only when this is not a scheduled run
if: github.event_name != 'schedule'
outputs:
changed: ${{ steps.changes.outputs.changed }}
changed: ${{ steps.firestore_src_changes.outputs.sources || steps.related_changes.outputs.other_changes }}
steps:
- uses: dorny/paths-filter@v2
id: changes
id: firestore_src_changes
with:
predicate-quantifier: 'every'
filters: |
changed:
sources:
# Firestore sources
- 'Firestore/**'
- '!**/*.md'
- uses: dorny/paths-filter@v2
id: related_changes
with:
filters: |
other_changes:
# Interop headers
- 'FirebaseAuth/Interop/*.h'
Expand Down

0 comments on commit e3c1d07

Please sign in to comment.