()
| 682 | } |
| 683 | |
| 684 | async function checkoutNewBranch() { |
| 685 | console.log("Checking out new branch...") |
| 686 | const branch = generateBranchName("issue") |
| 687 | await $`git checkout -b ${branch}` |
| 688 | return branch |
| 689 | } |
| 690 | |
| 691 | async function checkoutLocalBranch(pr: GitHubPullRequest) { |
| 692 | console.log("Checking out local branch...") |
no test coverage detected