diff --git a/gitlab/build_manifest.py b/gitlab/build_manifest.py index 9ad506f0fd..9e16f16ca2 100755 --- a/gitlab/build_manifest.py +++ b/gitlab/build_manifest.py @@ -108,7 +108,7 @@ def request(path: str) -> List[Dict[str, str]]: def get_project_branch(project_id: int, name: str) -> Dict[str, str]: print(f"Searching for {name} branch in project {project_id}") - path = f"projects/{project_id}/repository/branches?search={name}" + path = f"projects/{project_id}/repository/branches?search={name}&per_page=100" results = request(path) if not results: