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
4 changes: 4 additions & 0 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ env:
jobs:
build:
name: Build Docker image (${{ matrix.platform }})
# release-plz PRs only bump versions and changelogs; the code in them was already
# image-built on the PRs that introduced it, and merging one immediately fires the
# release event that rebuilds the same source. Skip the redundant PR-side build.
if: github.event_name == 'release' || !contains(github.event.pull_request.labels.*.name, 'release')
runs-on: ${{ matrix.runner }}
timeout-minutes: 30
strategy:
Expand Down
Loading