Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Infra] Don't require firestore check on docs changed #14176

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Changes from 2 commits
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' }}
ncooke3 marked this conversation as resolved.
Show resolved Hide resolved
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