Skip to content

Commit 8605f85

Browse files
allow searching for fork repos in github repo search (#618)
1 parent 6fafb26 commit 8605f85

File tree

1 file changed

+1
-1
lines changed
  • web-server/pages/api/internal/[org_id]

1 file changed

+1
-1
lines changed

web-server/pages/api/internal/[org_id]/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export const searchGithubReposWithNames = async (
102102
}
103103
`;
104104

105-
const queryString = `${searchString} in:name`;
105+
const queryString = `${searchString} in:name fork:true`;
106106

107107
const response = await fetch(GITHUB_API_URL, {
108108
method: 'POST',

0 commit comments

Comments
 (0)