- Notifications
You must be signed in to change notification settings - Fork899
add support for create_pull_request#63
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
2cb0225
tod1a344a
CompareThere 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 a new tool, create_pull_request, to enable creating GitHub pull requests programmatically. Key changes include:
- Registration of the create_pull_request tool in the server initialization.
- Implementation of create_pull_request logic and its associated API call in pkg/github/pullrequests.go.
- Addition of tests to verify proper tool behavior and integration.
- Updates to the README documentation to include details for the new tool.
Reviewed Changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
pkg/github/server.go | Added the create_pull_request tool to the server's tool list. |
pkg/github/pullrequests_test.go | Added comprehensive tests for the create_pull_request functionality. |
pkg/github/pullrequests.go | Implemented the create_pull_request tool's logic and API call. |
README.md | Documented the new create_pull_request tool and its parameters. |
Tip: Copilot only keeps its highest confidence comments to reduce noise and keep you focused.Learn more
Uh oh!
There was an error while loading.Please reload this page.
5f3926d
intomainUh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Toby Padilla <toby@toby.sh>
Uh oh!
There was an error while loading.Please reload this page.
Context
Fixes#60
This PR adds support for the
create_pull_request
tool.