Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/firestore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ jobs:
# Only when this is not a scheduled run
if: github.event_name != 'schedule'
outputs:
changed: ${{ steps.changes.outputs.changed }}
changed: ${{ steps.changes.outputs.sources == 'true' && steps.changes.outputs.docs == 'false' }}
steps:
- uses: dorny/paths-filter@v2
id: changes
with:
filters: |
changed:
sources:
# Firestore sources
- 'Firestore/**'

Expand Down Expand Up @@ -75,6 +75,8 @@ jobs:

# Rebuild on Ruby infrastructure changes.
- 'Gemfile*'
docs:
- 'Firestore/CHANGELOG.md'

check:
needs: changes
Expand Down
Loading