1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

backport_pr.py: increase entries per page for branches GET

This commit is contained in:
Martine Lenders 2023-10-18 14:12:45 +02:00
parent b6772c85fd
commit 25917c4b36
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -211,7 +211,7 @@ def main():
release_fullname = args.release_branch
release_shortname = _branch_name_strip(args.release_branch)
else:
status, branches = github_api.repos[ORG][REPO].branches.get()
status, branches = github_api.repos[ORG][REPO].branches.get(per_page=100)
if status != 200:
print(
f"Could not retrieve branches for {ORG}/{REPO}: "