Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fix: correct descriptions for PR/issue searching#840

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
kerobbi merged 1 commit intogithub:mainfromklaskosk:fix-search-descriptions
Aug 8, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletionsREADME.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -572,11 +572,11 @@ The following sets of tools are available (all are on by default):

- **search_issues** - Search issues
- `order`: Sort order (string, optional)
- `owner`: Optional repository owner. If provided with repo, onlynotifications for this repository are listed. (string, optional)
- `owner`: Optional repository owner. If provided with repo, onlyissues for this repository are listed. (string, optional)
- `page`: Page number for pagination (min 1) (number, optional)
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
- `query`: Search query using GitHub issues search syntax (string, required)
- `repo`: Optional repository name. If provided with owner, onlynotifications for this repository are listed. (string, optional)
- `repo`: Optional repository name. If provided with owner, onlyissues for this repository are listed. (string, optional)
- `sort`: Sort field by number of matches of categories, defaults to best match (string, optional)

- **update_issue** - Edit issue
Expand DownExpand Up@@ -744,11 +744,11 @@ The following sets of tools are available (all are on by default):

- **search_pull_requests** - Search pull requests
- `order`: Sort order (string, optional)
- `owner`: Optional repository owner. If provided with repo, onlynotifications for this repository are listed. (string, optional)
- `owner`: Optional repository owner. If provided with repo, onlypull requests for this repository are listed. (string, optional)
- `page`: Page number for pagination (min 1) (number, optional)
- `perPage`: Results per page for pagination (min 1, max 100) (number, optional)
- `query`: Search query using GitHub pull request search syntax (string, required)
- `repo`: Optional repository name. If provided with owner, onlynotifications for this repository are listed. (string, optional)
- `repo`: Optional repository name. If provided with owner, onlypull requests for this repository are listed. (string, optional)
- `sort`: Sort field by number of matches of categories, defaults to best match (string, optional)

- **submit_pending_pull_request_review** - Submit the requester's latest pending pull request review
Expand Down
4 changes: 2 additions & 2 deletionspkg/github/__toolsnaps__/search_issues.snap
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@
"type": "string"
},
"owner": {
"description": "Optional repository owner. If provided with repo, onlynotifications for this repository are listed.",
"description": "Optional repository owner. If provided with repo, onlyissues for this repository are listed.",
"type": "string"
},
"page": {
Expand All@@ -34,7 +34,7 @@
"type": "string"
},
"repo": {
"description": "Optional repository name. If provided with owner, onlynotifications for this repository are listed.",
"description": "Optional repository name. If provided with owner, onlyissues for this repository are listed.",
"type": "string"
},
"sort": {
Expand Down
4 changes: 2 additions & 2 deletionspkg/github/__toolsnaps__/search_pull_requests.snap
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@
"type": "string"
},
"owner": {
"description": "Optional repository owner. If provided with repo, onlynotifications for this repository are listed.",
"description": "Optional repository owner. If provided with repo, onlypull requests for this repository are listed.",
"type": "string"
},
"page": {
Expand All@@ -34,7 +34,7 @@
"type": "string"
},
"repo": {
"description": "Optional repository name. If provided with owner, onlynotifications for this repository are listed.",
"description": "Optional repository name. If provided with owner, onlypull requests for this repository are listed.",
"type": "string"
},
"sort": {
Expand Down
4 changes: 2 additions & 2 deletionspkg/github/issues.go
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -569,10 +569,10 @@ func SearchIssues(getClient GetClientFn, t translations.TranslationHelperFunc) (
mcp.Description("Search query using GitHub issues search syntax"),
),
mcp.WithString("owner",
mcp.Description("Optional repository owner. If provided with repo, onlynotifications for this repository are listed."),
mcp.Description("Optional repository owner. If provided with repo, onlyissues for this repository are listed."),
),
mcp.WithString("repo",
mcp.Description("Optional repository name. If provided with owner, onlynotifications for this repository are listed."),
mcp.Description("Optional repository name. If provided with owner, onlyissues for this repository are listed."),
),
mcp.WithString("sort",
mcp.Description("Sort field by number of matches of categories, defaults to best match"),
Expand Down
4 changes: 2 additions & 2 deletionspkg/github/pullrequests.go
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -691,10 +691,10 @@ func SearchPullRequests(getClient GetClientFn, t translations.TranslationHelperF
mcp.Description("Search query using GitHub pull request search syntax"),
),
mcp.WithString("owner",
mcp.Description("Optional repository owner. If provided with repo, onlynotifications for this repository are listed."),
mcp.Description("Optional repository owner. If provided with repo, onlypull requests for this repository are listed."),
),
mcp.WithString("repo",
mcp.Description("Optional repository name. If provided with owner, onlynotifications for this repository are listed."),
mcp.Description("Optional repository name. If provided with owner, onlypull requests for this repository are listed."),
),
mcp.WithString("sort",
mcp.Description("Sort field by number of matches of categories, defaults to best match"),
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp