Skip to content

Commit 26ebb0d

Browse files
committed
rm comment
1 parent 0ebdf30 commit 26ebb0d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pkg/github/minimal_types.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,6 @@ type MinimalBranch struct {
105105
Protected bool `json:"protected"`
106106
}
107107

108-
// Minimal response types for create/edit operations
109-
110108
// MinimalCreateResponse represents a minimal response for resource creation operations.
111109
type MinimalCreateResponse struct {
112110
URL string `json:"url"`

pkg/github/search.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ func SearchRepositories(getClient GetClientFn, t translations.TranslationHelperF
4545
if err != nil {
4646
return mcp.NewToolResultError(err.Error()), nil
4747
}
48-
48+
if _, ok := request.GetArguments()["minimal_output"]; !ok {
49+
minimalOutput = true
50+
}
4951
opts := &github.SearchOptions{
5052
ListOptions: github.ListOptions{
5153
Page: pagination.Page,

0 commit comments

Comments
 (0)