✨ alpha(update): add --squash, --preserve-path, --output-branch for PR-friendly upgrades #5002
+337
−62
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change makes
kubebuilder alpha update
produce a PR-ready branch and a single squashed commit when requested, improving automation and review UX.Key changes
• New
--squash
flag:kubebuilder-alpha-update-to-<to-version>
.• New
--preserve-path
(repeatable):.github/workflows
) so CI/config files are kept as-is on the PR branch.• New
--output-branch
:--squash
.• Commit message used by
--squash
:[kubebuilder-automated-update]: update scaffold from <from> to <to>; (squashed 3-way merge)
• Behavior/ergonomics:
--force
: stops on conflicts on the temporary merge branch.--force
: commits conflict markers on the merge branch (automation-friendly).make manifests generate fmt vet lint-fix
.Defaults / Compatibility
--squash
is off by default (no behavior change unless opted-in).--from-branch
defaults tomain
.--preserve-path
is empty by default (no restores).alpha generate
).Motivation
Make upgrades PR-centric and automation-ready by producing a deterministic, reviewable branch and a single squashed commit that mirrors the merge result.
Assisted-by: ChatGPT (OpenAI)