-
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
fix(internal/pkg/externalplugins/cherrypicker): do not change commit message #1188
Conversation
@@ -646,7 +646,7 @@ func (s *Server) handle(logger *logrus.Entry, requestor string, | |||
} | |||
|
|||
// Try git cherry-pick. | |||
cherrypick := ex.Command("git", "cherry-pick", "-m", "1", *pr.MergeSHA) | |||
cherrypick := ex.Command("git", "cherry-pick", "-m", "1", "--cleanup=verbatim", *pr.MergeSHA) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just this line will fix the line join issue.
…message add option for `git cherry-pick command`: `--cleanup=verbatim`. Signed-off-by: wuhuizuo <[email protected]>
bf42654
to
de79f85
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1188 +/- ##
==========================================
- Coverage 80.48% 80.47% -0.02%
==========================================
Files 21 21
Lines 3326 3324 -2
==========================================
- Hits 2677 2675 -2
Misses 419 419
Partials 230 230 ☔ View full report in Codecov by Sentry. |
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
/retest |
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
Signed-off-by: wuhuizuo <[email protected]>
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: wuhuizuo The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
add option for
git cherry-pick command
:--cleanup=verbatim
.Signed-off-by: wuhuizuo [email protected]
What problem does this PR solve?
Issue Number: close #xxx
Problem Summary:
What is changed and how it works?
What's Changed:
How it Works: