Add machete.github.retrieveOnlyMyPullRequests and machete.gitlab.retrieveOnlyMyMergeRequests git config keys - #1746
Open
PawelLipski wants to merge 1 commit into
Open
Add machete.github.retrieveOnlyMyPullRequests and machete.gitlab.retrieveOnlyMyMergeRequests git config keys#1746PawelLipski wants to merge 1 commit into
machete.github.retrieveOnlyMyPullRequests and machete.gitlab.retrieveOnlyMyMergeRequests git config keys#1746PawelLipski wants to merge 1 commit into
Conversation
PawelLipski
force-pushed
the
feature/fetch-only-my-prs
branch
2 times, most recently
from
July 7, 2026 19:07
0085281 to
ddc3f53
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #1746 +/- ##
===========================================
- Coverage 98.77% 98.76% -0.01%
===========================================
Files 45 45
Lines 5372 5426 +54
Branches 981 988 +7
===========================================
+ Hits 5306 5359 +53
Misses 41 41
- Partials 25 26 +1 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
machete.github.fetchOnlyMyPullRequests and machete.gitlab.fetchOnlyMyMergeRequests git config keys
PawelLipski
force-pushed
the
feature/fetch-only-my-prs
branch
4 times, most recently
from
July 8, 2026 14:05
c0b4a66 to
78ce323
Compare
machete.github.fetchOnlyMyPullRequests and machete.gitlab.fetchOnlyMyMergeRequests git config keysmachete.github.retrieveOnlyMyPullRequests and machete.gitlab.retrieveOnlyMyMergeRequests git config keys
…ergeRequests} git config keys When set, commands that list open PRs/MRs download only those authored by the current user (via GitHub GraphQL search / GitLab author_username filter) instead of every open PR/MR in the repository. This makes annotating and traversing one's own PRs feasible in repositories with hundreds or thousands of open PRs, at the cost of not discovering PRs opened by other users when traversing cross-author chains. The `--all` flag still downloads every open PR/MR regardless of the key, and `--by=<user>` downloads the given user's PRs/MRs directly (so it keeps working for any author even when the key is set).
PawelLipski
force-pushed
the
feature/fetch-only-my-prs
branch
from
July 8, 2026 14:35
78ce323 to
d0f2146
Compare
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 set, commands that list open PRs/MRs download only those authored by the current user
(via GitHub GraphQL search / GitLab author_username filter) instead of every open PR/MR in the repository.
This makes annotating and traversing one's own PRs feasible in repositories with hundreds or thousands of open PRs,
at the cost of not discovering PRs opened by other users when traversing cross-author chains.
The
--allflag still downloads every open PR/MR regardless of the key,and
--by=<user>downloads the given user's PRs/MRs directly (so it keeps working for any author even when the key is set).