Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Create a new pull request in a repository
github__create_pr
{ "type": "object", "properties": { "owner": { "type": "string", "description": "Repository owner" }, "repo": { "type": "string", "description": "Repository name" }, "title": { "type": "string", "description": "PR title" }, "body": { "type": "string", "description": "PR description (markdown)" }, "head": { "type": "string", "description": "Branch to merge from (e.g. feature-branch or owner:feature-branch)" }, "base": { "type": "string", "description": "Branch to merge into (e.g. main)" }, "draft": { "type": "boolean", "description": "Create as draft PR" } }, "required": [ "owner", "repo", "title", "head", "base" ], "description": "Input schema for the github__create_pr tool." }