We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a834162 commit e3c1d07Copy full SHA for e3c1d07
.github/workflows/firestore.yml
@@ -30,16 +30,22 @@ jobs:
30
# Only when this is not a scheduled run
31
if: github.event_name != 'schedule'
32
outputs:
33
- changed: ${{ steps.changes.outputs.changed }}
+ changed: ${{ steps.firestore_src_changes.outputs.sources || steps.related_changes.outputs.other_changes }}
34
steps:
35
- uses: dorny/paths-filter@v2
36
- id: changes
+ id: firestore_src_changes
37
with:
38
+ predicate-quantifier: 'every'
39
filters: |
- changed:
40
+ sources:
41
# Firestore sources
42
- 'Firestore/**'
-
43
+ - '!**/*.md'
44
+ - uses: dorny/paths-filter@v2
45
+ id: related_changes
46
+ with:
47
+ filters: |
48
+ other_changes:
49
# Interop headers
50
- 'FirebaseAuth/Interop/*.h'
51
0 commit comments