( workspaceId: string, repo: string, visibility: "private" | "public", branch?: string | null, )
| 590 | }; |
| 591 | |
| 592 | export async function createGitHubRepo( |
| 593 | workspaceId: string, |
| 594 | repo: string, |
| 595 | visibility: "private" | "public", |
| 596 | branch?: string | null, |
| 597 | ): Promise<CreateGitHubRepoResponse> { |
| 598 | return invoke<CreateGitHubRepoResponse>("create_github_repo", { |
| 599 | workspaceId, |
| 600 | repo, |
| 601 | visibility, |
| 602 | branch, |
| 603 | }); |
| 604 | } |
| 605 | |
| 606 | export async function listGitRoots( |
| 607 | workspace_id: string, |
no outgoing calls
no test coverage detected