-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat: add reviewers parameter to UpdatePullRequest #285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mattdholloway
merged 32 commits into
github:main
from
MayorFaj:feat/259/assign-reviewers
Jul 31, 2025
+138
−7
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
3234755
feat: add reviewers parameter to UpdatePullRequest and update tests
MayorFaj 9db748b
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj a84ede9
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 276ac8d
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 53d0833
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj c4de80b
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 0e51a09
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj b9d2e28
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 9ac7250
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 71dcedf
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 5c85a09
Update pullrequests.go
MayorFaj b09f589
feat: enhance update pull request functionality with reviewers support
MayorFaj 53e2708
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 7676eae
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 9209f5c
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 6f21c3f
update README to clarify optional reviewers parameter in API document…
MayorFaj 8a6cabf
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 4e28ee7
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 432907e
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 0474365
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 20bfead
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 5650e1d
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 0674183
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 046f994
feat: enhance UpdatePullRequest to return early if no updates or revi…
MayorFaj 90eb11a
Add updating draft state to `update_pull_request` tool (#774)
mattdholloway 033f613
Add support for org-level discussions in list_discussions tool (#775)
tommaso-moro 94cef70
refactor: streamline UpdatePullRequest logic and enhance test cases f…
MayorFaj d89e522
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj 5ea322b
refactor: remove redundant draft update tests and streamline UpdatePu…
MayorFaj be359ea
test: add unit tests for updating pull request draft state
MayorFaj 1934e2a
Merge branch 'main' into feat/259/assign-reviewers
MayorFaj c1b9a46
refactor: simplify UpdatePullRequest tests by removing unused mock data
MayorFaj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could simplify it to
!(restUpdateNeeded || draftProvided || len(reviewers) != 0)