We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40903ce commit 289854dCopy full SHA for 289854d
.github/scripts/backport.js
@@ -70,7 +70,7 @@ for (const targetBranch of branches) {
70
const commitMessage = commit.commit.message.split('\n')[0];
71
core.info(`Cherry-picking commit ${i + 1}/${commits.length}: ${commitSha.substring(0, 7)} - ${commitMessage}`);
72
try {
73
- execSync(`git cherry-pick -x ${commitSha}`, {
+ execSync(`git cherry-pick -m 1 -x ${commitSha}`, {
74
encoding: 'utf-8',
75
stdio: 'pipe'
76
});
0 commit comments