Skip to content

Commit

Permalink
chore: more prettier fix?
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Jan 27, 2024
1 parent 3b3cf7a commit 068cb1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/modules/platform/github/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@ export async function getRepos(config?: AutodiscoverConfig): Promise<string[]> {
}

logger.debug({ topics: config.topics }, 'Filtering by topics');
const topicRepositories = nonArchivedRepositories.filter(
(repo) => repo.topics?.some((topic) => config?.topics?.includes(topic)),
const topicRepositories = nonArchivedRepositories.filter((repo) =>
repo.topics?.some((topic) => config?.topics?.includes(topic)),
);

if (topicRepositories.length < nonArchivedRepositories.length) {
Expand Down

0 comments on commit 068cb1b

Please sign in to comment.