Skip to content

Commit b3df18d

Browse files
committed
Fixing filestoskip option after merge
Signed-off-by: Vacha Shah <vachshah@amazon.com>
1 parent a1d89dc commit b3df18d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ const backportOnce = async ({
105105
await git("switch", base);
106106
await git("switch", "--create", head);
107107
try {
108-
await git("cherry-pick", "-x", commitSha);
108+
await git("cherry-pick", "-x", "-n", commitSha);
109109
for (const file of filesToSkip) {
110110
await git("checkout", "HEAD", file);
111111
}

0 commit comments

Comments
 (0)