(summary: string)
| 733 | } |
| 734 | |
| 735 | async function pushToLocalBranch(summary: string) { |
| 736 | console.log("Pushing to local branch...") |
| 737 | const actor = useContext().actor |
| 738 | |
| 739 | await assertGitIdentityConfigured() |
| 740 | await $`git add .` |
| 741 | await $`git commit -m "${summary} |
| 742 | |
| 743 | Co-authored-by: ${actor} <${actor}@users.noreply.github.com>"` |
| 744 | await $`git push` |
| 745 | } |
| 746 | |
| 747 | async function pushToForkBranch(summary: string, pr: GitHubPullRequest) { |
| 748 | console.log("Pushing to fork branch...") |
no test coverage detected