-
Notifications
You must be signed in to change notification settings - Fork 2k
Add issue types #869
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add issue types #869
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 issue types in GitHub issue creation and update operations. The changes enable users to specify and modify the type field when working with GitHub issues through the MCP server.
- Adds
type
parameter to bothcreate_issue
andupdate_issue
tools - Updates test coverage to verify the new type functionality
- Updates documentation to reflect the new optional type parameter
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
pkg/github/issues.go | Adds type parameter handling to CreateIssue and UpdateIssue functions |
pkg/github/issues_test.go | Updates tests to cover type field functionality and validation |
pkg/github/toolsnaps/create_issue.snap | Updates schema snapshot to include type parameter |
pkg/github/toolsnaps/update_issue.snap | Updates schema snapshot to include type parameter |
README.md | Documents the new optional type parameter for issue operations |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
You can also share your feedback on Copilot code review for a chance to win a $100 gift card. Take the survey.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Continuation of #484
Closes: #409