You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,14 @@ These are one time installations required to be able to test your changes locall
19
19
20
20
## Submitting a pull request
21
21
22
+
> **Important**: Please open your pull request against the `next` branch, not `main`. The `next` branch is where we integrate new features and changes before they are merged to `main`.
23
+
22
24
1.[Fork][fork] and clone the repository
23
25
1. Make sure the tests pass on your machine: `go test -v ./...`
24
26
1. Make sure linter passes on your machine: `golangci-lint run`
25
27
1. Create a new branch: `git checkout -b my-branch-name`
26
28
1. Make your change, add tests, and make sure the tests and linter still pass
27
-
1. Push to your fork and [submit a pull request][pr]
29
+
1. Push to your fork and [submit a pull request][pr] targeting the `next` branch
28
30
1. Pat yourself on the back and wait for your pull request to be reviewed and merged.
29
31
30
32
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
Copy file name to clipboardExpand all lines: pkg/github/issues.go
+10-53Lines changed: 10 additions & 53 deletions
Original file line number
Diff line number
Diff line change
@@ -153,18 +153,24 @@ func AddIssueComment(getClient GetClientFn, t translations.TranslationHelperFunc
153
153
}
154
154
}
155
155
156
-
// SearchIssues creates a tool to search for issues and pull requests.
156
+
// SearchIssues creates a tool to search for issues.
157
157
funcSearchIssues(getClientGetClientFn, t translations.TranslationHelperFunc) (tool mcp.Tool, handler server.ToolHandlerFunc) {
158
158
returnmcp.NewTool("search_issues",
159
-
mcp.WithDescription(t("TOOL_SEARCH_ISSUES_DESCRIPTION", "Search for issues in GitHub repositories.")),
159
+
mcp.WithDescription(t("TOOL_SEARCH_ISSUES_DESCRIPTION", "Search for issues in GitHub repositories using issues search syntax already scoped to is:issue")),
0 commit comments