Retarget branches to next branch in chain, rather than defaultBranch #35464
+77 −36
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.
If setting RETARGET_CHILDREN_ON_MERGE is true, we should retarget a PR that targets a branch we're merging to the target branch of the branch we're merging.
Previously, RETARGET_CHILDREN_ON_MERGE incorrectly retargeted all following PR's in a chain to the defaultBranch when merging a PR in the middle of a chain.
Fixes #35138
I've moved the RETARGET_CHILDREN_ON_MERGE behavior from
pull/AdjustPullsCausedByBranchDeleted()tobranch/DeleteBranch(), because we need to know which PR is being closed to retarget the child branch(es). Inpull/pull.gowe only know that a branch is being deleted, but not why.I'm not very happy with the dependency, though. So if there's a cleaner option, I'd be happy to move this behavior back to
pull/pull.go.