Skip to content

Commit ac17416

Browse files
committed
Fix formatting
1 parent c3cfdea commit ac17416

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/git/repository.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ export async function getGitHubContext(): Promise<GitHubContext | undefined> {
159159

160160
// Filter out wiki repositories because the GET call will fail and throw an error
161161
const protocolInfos = allProtocolInfos?.filter(info => !info.protocol.repositoryName.match(/\.wiki$/));
162-
162+
163163
if (!protocolInfos) {
164164
logDebug("Could not get protocol infos");
165165
return undefined;
@@ -178,7 +178,7 @@ export async function getGitHubContext(): Promise<GitHubContext | undefined> {
178178
return await Promise.all(
179179
protocolInfos.map(async (protocolInfo): Promise<GitHubRepoContext> => {
180180
logDebug("Getting infos for repository", protocolInfo.url);
181-
181+
182182
const repoInfo = await client.repos.get({
183183
repo: protocolInfo.protocol.repositoryName,
184184
owner: protocolInfo.protocol.owner

0 commit comments

Comments
 (0)