-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PR commits are cherry-picked instead of the squashed commit #342
Comments
Hi @Lawls91 👋 Thanks for reporting this. It is currently not possible to cherry-pick the squashed commit. The action only cherry-picks the commits that exist on the merged pull request. Previously the action did not work at all for pull requests that were merged using rebase or squash strategies, but I closed #46 when that was fixed and the action could cherry-pick the pull request commits for those cases. Do you have a specific need to cherry-pick the squashed commit instead of the commits on the pull request? My personal thoughts on this have always been that this way the reviewer of the backport pull request can review it in the same way that the original pull request was reviewed. I.e., it has all the individual commits and their messages. |
I must admit its been a week so I cant fully remember, but I feel like I was having issues with the backport picking up merge commits where main/master had been merged into the PR, but they shouldn't be part of the backport I'll try and revisit this this week if I can and take another look |
Thanks @Lawls91! That's a great point! There's another feature request that will help resolve that problem, which I plan to implement once I've completed #340: Still, even with #341 implemented, there would be cases left where cherry-picking the resulting commit(s) (i.e. the squashed commit or the rebased commits) are preferable. So, eventually I hope to support this as well. |
I just ran into this as I started using this action. The problem if you squash PRs into I don't see a great way around this problem though because if you just simply backported the squashed commit, then you run the risk of picking up merge commits from |
@jrhemstad Yes, the action only cherry-picks the commits that exist on the merged pull request, at this time.
This would not be a risk if this action would support cherry-picking the squashed commit instead of the commits that exist on the merged pull request. However, it does not support this yet. It seems you have a specific need for cherry-picking only the squashed commit. Can you elaborate on why you need this specifically? It may help me prioritize this over other issues. |
For example, we recently had a PR where the backport action failed when trying to cherry-pick the individual commits: NVIDIA/cccl#574 (comment) (fyi, the instructions it prints for manually cherry-picking don't include the logic for skipping merge commits) Trying to manually cherry-pick all of the PR commits was a bit of a pain. In contrast, when we just manually cherry-picked the squashed commit, it applied cleanly without any conflicts or issues: NVIDIA/cccl#663. It would be nice if the action had a way to automate this for us as we never care about preserving the individual commits in the PR we're backporting. |
Ah yes, reduced chance of conflicts is definitely a benefit of cherry-picking a squashed commit. I see this feature (cherry-picking the resulting commits rather than the pull request's commits) as useful, but there are a few issues I'll prioritize over this at this time, like: |
@jrhemstad @Lawls91 |
Hey just testing this for our repo and I am seeing that squashed PRs cherrypick using the commits on the PR branch, not the final squash commit. I saw this ticket but it has been closed
#46
I've not really dug into it yet but is it possible on a squash commit to grab that commit and cherrypick using that?
The text was updated successfully, but these errors were encountered: