File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -30,16 +30,22 @@ jobs:
3030 # Only when this is not a scheduled run
3131 if : github.event_name != 'schedule'
3232 outputs :
33- changed : ${{ steps.changes .outputs.sources == 'true' && steps.changes .outputs.docs == 'false' }}
33+ changed : ${{ steps.firestore_src_changes .outputs.sources || steps.related_changes .outputs.other_changes }}
3434 steps :
3535 - uses : dorny/paths-filter@v2
36- id : changes
36+ id : firestore_src_changes
3737 with :
38+ predicate-quantifier : ' every'
3839 filters : |
3940 sources:
4041 # Firestore sources
4142 - 'Firestore/**'
42-
43+ - '!**/*.md'
44+ - uses : dorny/paths-filter@v2
45+ id : related_changes
46+ with :
47+ filters : |
48+ other_changes:
4349 # Interop headers
4450 - 'FirebaseAuth/Interop/*.h'
4551
7581
7682 # Rebuild on Ruby infrastructure changes.
7783 - 'Gemfile*'
78- docs:
79- - 'Firestore/CHANGELOG.md'
8084
8185 check :
8286 needs : changes
You can’t perform that action at this time.
0 commit comments