Skip to content

Commit

Permalink
Allows empty HIDDEN_REPOSITORIES
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbs committed Jul 25, 2024
1 parent 62bb532 commit 7d2c385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/composition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const projectRepository = new ProjectRepository({
export const projectDataSource = new CachingProjectDataSource({
dataSource: new GitHubProjectDataSource({
repositoryDataSource: new FilteringGitHubRepositoryDataSource({
hiddenRepositories: listFromCommaSeparatedString(env.getOrThrow("HIDDEN_REPOSITORIES")),
hiddenRepositories: listFromCommaSeparatedString(env.get("HIDDEN_REPOSITORIES")),
dataSource: new GitHubRepositoryDataSource({
loginsDataSource: new GitHubLoginDataSource({
graphQlClient: userGitHubClient
Expand Down

0 comments on commit 7d2c385

Please sign in to comment.