We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9bfb1d commit 1c5bc81Copy full SHA for 1c5bc81
pkg/github/tools.go
@@ -51,7 +51,6 @@ func DefaultToolsetGroup(readOnly bool, getClient GetClientFn, getGQLClient GetG
51
AddReadTools(
52
toolsets.NewServerTool(GetIssue(getClient, t)),
53
toolsets.NewServerTool(SearchIssues(getClient, t)),
54
- toolsets.NewServerTool(SearchPullRequests(getClient, t)),
55
toolsets.NewServerTool(ListIssues(getClient, t)),
56
toolsets.NewServerTool(GetIssueComments(getClient, t)),
57
).
@@ -70,6 +69,7 @@ func DefaultToolsetGroup(readOnly bool, getClient GetClientFn, getGQLClient GetG
70
69
toolsets.NewServerTool(GetPullRequest(getClient, t)),
71
toolsets.NewServerTool(ListPullRequests(getClient, t)),
72
toolsets.NewServerTool(GetPullRequestFiles(getClient, t)),
+ toolsets.NewServerTool(SearchPullRequests(getClient, t)),
73
toolsets.NewServerTool(GetPullRequestStatus(getClient, t)),
74
toolsets.NewServerTool(GetPullRequestComments(getClient, t)),
75
toolsets.NewServerTool(GetPullRequestReviews(getClient, t)),
0 commit comments