Skip to content

Commit

Permalink
allow searching for fork repos in github repo search (#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
adnanhashmi09 authored Nov 13, 2024
1 parent 6fafb26 commit 8605f85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-server/pages/api/internal/[org_id]/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export const searchGithubReposWithNames = async (
}
`;

const queryString = `${searchString} in:name`;
const queryString = `${searchString} in:name fork:true`;

const response = await fetch(GITHUB_API_URL, {
method: 'POST',
Expand Down

0 comments on commit 8605f85

Please sign in to comment.