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 5f5ed0f commit b9ae791Copy full SHA for b9ae791
.github/workflows/create-cherry-pick-pr.yml
@@ -62,6 +62,8 @@ jobs:
62
63
const title = `🤖 Pick PR #${PR} (${pr.data.title.substring(0, 35)}${pr.data.title.length > 35 ? "..." : ""}) into ${TARGET_BRANCH}`;
64
65
+ await exec.exec("git", ["config", "user.email", "typescriptbot@microsoft.com"]);
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", pr.data.merge_commit_sha]);
0 commit comments