Skip to content

Commit

Permalink
minor: include 100 repositories when querying
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Oct 4, 2024
1 parent 2fd0278 commit 285e9e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Github/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static function forOrganization(string $name, Api $api): array
{
return \array_map(
static fn(array $data) => new self($data, $api),
$api->request('GET', "/orgs/{$name}/repos?type=public")
$api->request('GET', "/orgs/{$name}/repos?type=public&per_page=100")
);
}

Expand Down

0 comments on commit 285e9e5

Please sign in to comment.