(summary: string, commit: boolean)
| 1095 | } |
| 1096 | |
| 1097 | async function pushToLocalBranch(summary: string, commit: boolean) { |
| 1098 | console.log("Pushing to local branch...") |
| 1099 | if (commit) { |
| 1100 | await gitRun(["add", "."]) |
| 1101 | await commitChanges(summary, actor) |
| 1102 | } |
| 1103 | await gitRun(["push"]) |
| 1104 | } |
| 1105 | |
| 1106 | async function pushToForkBranch(summary: string, pr: GitHubPullRequest, commit: boolean) { |
| 1107 | console.log("Pushing to fork branch...") |
no test coverage detected