(type: "issue" | "schedule" | "dispatch")
| 1038 | } |
| 1039 | |
| 1040 | async function checkoutNewBranch(type: "issue" | "schedule" | "dispatch") { |
| 1041 | console.log("Checking out new branch...") |
| 1042 | const branch = generateBranchName(type) |
| 1043 | await gitRun(["checkout", "-b", branch]) |
| 1044 | return branch |
| 1045 | } |
| 1046 | |
| 1047 | async function checkoutLocalBranch(pr: GitHubPullRequest) { |
| 1048 | console.log("Checking out local branch...") |
no test coverage detected