fix(gh): show "No Pull Requests" / "No Issues" for empty lists#935
Merged
FlorianBruniaux merged 1 commit intortk-ai:developfrom Apr 13, 2026
Merged
Conversation
When `rtk gh pr list` or `rtk gh issue list` returns an empty array,
the header ("Pull Requests" / "Issues") is printed with nothing below
it. Display "No Pull Requests" / "No Issues" instead.
Closes rtk-ai#764
4e7abe2 to
ec4d243
Compare
pszymkowiak
approved these changes
Apr 3, 2026
Collaborator
pszymkowiak
left a comment
There was a problem hiding this comment.
Thanks @Bortlesboat — clean fix, handles both PR and issue empty lists correctly. The ultra_compact variant for PRs is a nice touch.
LGTM.
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.
When
rtk gh pr listorrtk gh issue listreturns an empty JSON array, the header is printed with nothing below it. This displays "No Pull Requests" (or "No PRs" in ultra-compact mode) and "No Issues" instead.Fixes #764
Changes:
list_prs: checkprs.is_empty()before printing headerlist_issues: same patternAll 52 existing
gh_cmdtests pass.cargo clippyclean.