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

Don't trigger empty PRs for Provider Map updates #553

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from all 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
10 changes: 8 additions & 2 deletions .github/workflows/provider-map-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Authenticate with Google
uses: google-github-actions/auth@v2
with:
credentials_json: '${{ secrets.GCP_SA_KEY }}'
credentials_json: "${{ secrets.GCP_SA_KEY }}"

- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v2
Expand All @@ -37,13 +37,19 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: "3.10"

- name: Install dependencies, process providers, and update GeoJSON
run: |
pip install -r .github/resources/requirements.txt
python .github/resources/process_providers.py

# This step automatically formats code but will fail if it makes changes, so
# we use `continue-on-error: true` to ensure the workflow continues.
- name: Run pre-commit formatters
continue-on-error: true
uses: pre-commit/[email protected]

- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
Expand Down
Loading