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
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,15 @@ jobs:
image:
name: image
runs-on: ubuntu-latest
# The only slow job: it builds the container and boots it, ~14 minutes. The four checks above are
# seconds and stay on every push, because they catch most things cheaply. This one is the cost, so
# on a pull request it runs only when an admin adds the `full-ci` label — the point at which the PR
# is actually a merge candidate. On main and through the release workflow_call it always runs, so
# nothing reaches a release without it. `verify` treats a skipped job as passing, so an unlabelled
# PR is green on the cheap checks alone.
if: >-
github.event_name != 'pull_request' ||
contains(github.event.pull_request.labels.*.name, 'full-ci')
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
Expand Down