Skip to content
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
5 changes: 5 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ permissions:
jobs:
push_to_registry:
name: Build and push Docker images
# Dependabot PRs never receive repository secrets (GitHub withholds them
# from dependabot-triggered runs), so GCP auth always fails here. Skip
# the job for those PRs instead of reporting a false CI failure; the
# real image build/push still runs on merge to main and on release.
if: github.event_name != 'pull_request' || github.actor != 'dependabot[bot]'
runs-on:
- ubuntu-latest
strategy:
Expand Down
Loading