()
| 1032 | } |
| 1033 | |
| 1034 | async function restoreGitConfig() { |
| 1035 | if (gitConfig === undefined) return |
| 1036 | const config = "http.https://github.com/.extraheader" |
| 1037 | await gitRun(["config", "--local", config, gitConfig]) |
| 1038 | } |
| 1039 | |
| 1040 | async function checkoutNewBranch(type: "issue" | "schedule" | "dispatch") { |
| 1041 | console.log("Checking out new branch...") |
no test coverage detected