forked fromgithub/github-mcp-server
- Notifications
You must be signed in to change notification settings - Fork0
[pull] main from github:main#75
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Changes fromall commits
Commits
Show all changes
17 commits Select commitHold shift + click to select a range
5f92434
Add search pull requests tool
JoannaaKL805358b
Split pr and issue search
JoannaaKL8bd7152
Add repo and owner
JoannaaKLaaaff4f
Add underscore variant
JoannaaKL9e1d401
Remove unnecessary or
JoannaaKL76535ee
Bind
JoannaaKLecc57ff
Update main.go
JoannaaKL0166ca5
Tidy
JoannaaKL96f0173
Fix linter error
JoannaaKL7f8d28e
add a new release workflow
SamMorrowDrums46089ed
improve release.yml to ensure that the ref is up-to-date
SamMorrowDrums5dc5bb7
Release process update (#587)
SamMorrowDrumsb9a5f2c
fix bug in create PR code (#588)
SamMorrowDrums3deaca8
don't actually create a PR (#589)
SamMorrowDrumse2e2bbb
Delete .github/workflows/sync-next-branch.yml
SamMorrowDrums3539db8
Delete .github/workflows/pr-base-check.yml
SamMorrowDrums45d0270
Delete .github/workflows/release.yml
SamMorrowDrumsFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
4 changes: 2 additions & 2 deletions.github/workflows/docker-publish.yml
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
4 changes: 3 additions & 1 deletionCONTRIBUTING.md
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
14 changes: 13 additions & 1 deletioncmd/github-mcp-server/main.go
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
2 changes: 1 addition & 1 deletiongo.mod
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
14 changes: 11 additions & 3 deletionspkg/github/__toolsnaps__/search_issues.snap
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
64 changes: 64 additions & 0 deletionspkg/github/__toolsnaps__/search_pull_requests.snap
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
{ | ||
"annotations": { | ||
"title": "Search pull requests", | ||
"readOnlyHint": true | ||
}, | ||
"description": "Search for pull requests in GitHub repositories using issues search syntax already scoped to is:pr", | ||
"inputSchema": { | ||
"properties": { | ||
"order": { | ||
"description": "Sort order", | ||
"enum": [ | ||
"asc", | ||
"desc" | ||
], | ||
"type": "string" | ||
}, | ||
"owner": { | ||
"description": "Optional repository owner. If provided with repo, only notifications for this repository are listed.", | ||
"type": "string" | ||
}, | ||
"page": { | ||
"description": "Page number for pagination (min 1)", | ||
"minimum": 1, | ||
"type": "number" | ||
}, | ||
"perPage": { | ||
"description": "Results per page for pagination (min 1, max 100)", | ||
"maximum": 100, | ||
"minimum": 1, | ||
"type": "number" | ||
}, | ||
"query": { | ||
"description": "Search query using GitHub pull request search syntax", | ||
"type": "string" | ||
}, | ||
"repo": { | ||
"description": "Optional repository name. If provided with owner, only notifications for this repository are listed.", | ||
"type": "string" | ||
}, | ||
"sort": { | ||
"description": "Sort field by number of matches of categories, defaults to best match", | ||
"enum": [ | ||
"comments", | ||
"reactions", | ||
"reactions-+1", | ||
"reactions--1", | ||
"reactions-smile", | ||
"reactions-thinking_face", | ||
"reactions-heart", | ||
"reactions-tada", | ||
"interactions", | ||
"created", | ||
"updated" | ||
], | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"query" | ||
], | ||
"type": "object" | ||
}, | ||
"name": "search_pull_requests" | ||
} |
63 changes: 10 additions & 53 deletionspkg/github/issues.go
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.
Uh oh!
There was an error while loading.Please reload this page.
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.