ci(pr): skip build-all for non-image changes + auto-cancel runs - #20
Conversation
…rseded runs pr.yml runs ./build-all (all images on one runner) on every branch push, which is slow and gets cancelled. Skip it via paths-ignore for changes that don't affect the images (helm/, .github/, docs), and add a concurrency group so a new push cancels the previous in-flight run instead of piling up.
|
Warning Review limit reached
Next review available in: 54 minutes Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
pr.ymlruns./build-all(every image, single runner) on every branchpush — slow, and it gets cancelled (see the red
teston recent CI-only PRslike #17, whose change never touched an image).
Two changes,
pr.ymlonly:paths-ignore: don't runbuild-allwhen a push only toucheshelm/**,.github/**,**.md,LICENSEorcleanup-old-tags.sh.Uses an ignore list (not an allowlist) so any real image path still triggers.
concurrency+cancel-in-progress: a new push cancels the previousin-flight run on the same branch instead of stacking them.
Note: if
testis a required status check, a skipped run leaves it pending;you may want to make it non-required (or a required check that reports success
when skipped). Scope: master only, as requested.