1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
19985: backport_pr.py: increase entries per page for branches GET r=MrKevinWeiss a=miri64



Co-authored-by: Martine Lenders <m.lenders@fu-berlin.de>
This commit is contained in:
bors[bot] 2023-10-18 16:59:33 +00:00 committed by GitHub
commit 14b608cb23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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}: "