GitHubManager.createRepo
새로운 레포지토리를 생성하는 메소드입니다. @see GitHub API - Create an organization repository @see GitHub API - Create a repository for the authenticated user
Signature
createRepo: ({
isPrivate,
owner,
repo
}: CreateRepoParams) => Promise<RestEndpointMethodTypes["repos"]["createInOrg"]["response"]["data"] & {
isOrg: boolean;
}>;