diff --git a/packages/cli/src/cli/github/github.ts b/packages/cli/src/cli/github/github.ts index d759aad0e..18da5c457 100644 --- a/packages/cli/src/cli/github/github.ts +++ b/packages/cli/src/cli/github/github.ts @@ -16,6 +16,7 @@ export class Github { this.logger = logger; const [org, repoName] = repo.split('/'); if (org == null || repoName == null) throw new Error(`Badly formatted repo name: ${repo}`); + this.org = org; this.repoName = repoName; const token = Env.get(Env.GitHubToken);