Fix prettier errors

This commit is contained in:
Taras Mankovski
2020-09-15 16:38:38 -04:00
parent 6d3ce75100
commit 449b5c3f15
2 changed files with 6 additions and 6 deletions
@@ -242,7 +242,7 @@ describe('GitHub Publisher', () => {
type: 'Organization',
},
} as OctokitResponse<UsersGetByUsernameResponseData>);
await publisher.publish({
values: {
isOrg: true,
@@ -67,11 +67,11 @@ export class GithubPublisher implements PublisherBase {
const repoCreationPromise =
user.data.type === 'Organization'
? this.client.repos.createInOrg({
name,
org: owner,
private: this.repoVisibility !== 'public',
visibility: this.repoVisibility,
})
name,
org: owner,
private: this.repoVisibility !== 'public',
visibility: this.repoVisibility,
})
: this.client.repos.createForAuthenticatedUser({ name });
const { data } = await repoCreationPromise;