We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8caae93 commit 6f9d349Copy full SHA for 6f9d349
.github/workflows/create-cherry-pick-pr.yml
@@ -66,7 +66,7 @@ jobs:
66
await exec.exec("git", ["config", "user.name", "TypeScript Bot"]);
67
await exec.exec("git", ["switch", "--detach", `origin/${TARGET_BRANCH}`]);
68
await exec.exec("git", ["switch", "-c", pickBranch]);
69
- await exec.exec("git", ["cherry-pick", "-m", "-1", pr.data.merge_commit_sha]);
+ await exec.exec("git", ["cherry-pick", "-m", "1", pr.data.merge_commit_sha]);
70
await exec.exec("git", ["push", "--force", "--set-upstream", "origin", pickBranch]);
71
72
const existingPulls = await github.rest.pulls.list({
0 commit comments