- Notifications
You must be signed in to change notification settings - Fork899
add support for list_issues#26
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
Uh oh!
There was an error while loading.Please reload this page.
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Pull Request Overview
This PR adds support for the "list_issues" tool that lists and filters repository issues.
- Implements a new listIssues function in pkg/github/issues.go.
- Adds corresponding tests in pkg/github/issues_test.go.
- Updates README.md documentation and registers the tool in pkg/github/server.go.
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
pkg/github/issues.go | Added listIssues implementation and ISO timestamp error message. |
pkg/github/issues_test.go | Added tests for listIssues and parseISOTimestamp functionality. |
README.md | Updated documentation to include parameters for list_issues. |
pkg/github/server.go | Registered listIssues in the server tool set. |
Tip: Leave feedback on Copilot's review comments with the 👎 and 👍 buttons to help improve review quality.Learn more
Uh oh!
There was an error while loading.Please reload this page.
b3b3e02
intomainUh oh!
There was an error while loading.Please reload this page.
* add create_issue tool* add support for list_issues
Context
This PR adds support for the
list_issues
tool.