feat: Fetch all merge request beyond the default 20#549
Merged
harrisoncramer merged 2 commits intoharrisoncramer:developfrom Apr 25, 2026
Merged
Conversation
f0d2a1a to
7413bbe
Compare
…ching Allow users to configure the number of merge requests fetched via the `per_page` setting in `choose_merge_request`. Defaults to 100.
7413bbe to
7a70bef
Compare
ff5e351 to
6898cbf
Compare
Owner
|
Thank you! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fetch all project merge requests from the GitLab API by paginating through results server-side, instead of relying on a single page (default 20). This ensures the merge request chooser shows the complete list regardless of project size.
Problem
The
ListProjectMergeRequestscall only returned the first page of results (default 20 MRs per the GitLab API). Projects with more merge requests had entries silently truncated, so users could not select older or less recent MRs from the picker. An earlier attempt added aper_pageoption on the Lua side, but that only shifted the limit instead of solving the truncation.Changes
cmd/app/merge_requests.go: loop over all pages usingres.NextPage, accumulating results into a singlemergeRequestsslice before responding.PerPageto 100, to minimize round-trips.