From 340694796f85001e02ac3ab1680d23d291b05340 Mon Sep 17 00:00:00 2001 From: Bill Monkman Date: Thu, 3 Mar 2022 14:18:14 -0800 Subject: [PATCH] fix: github query to create a repo seems to have switched a type --- internal/vcs/create-git-repos.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/vcs/create-git-repos.go b/internal/vcs/create-git-repos.go index ff09bb52..8d6078fb 100644 --- a/internal/vcs/create-git-repos.go +++ b/internal/vcs/create-git-repos.go @@ -89,7 +89,7 @@ const createPersonalRepositoryMutation = `mutation ($repoName: String!, $repoDes } }` -const createOrganizationRepositoryMutation = `mutation ($repoName: String!, $repoDescription: String!, $ownerId: String!) { +const createOrganizationRepositoryMutation = `mutation ($repoName: String!, $repoDescription: String!, $ownerId: ID) { createRepository( input: { name:$repoName,