create_pull_request
Generate a pull request in a repository to propose and review code changes. Specify title, description, source branch, and target branch to facilitate collaboration on AtomGit MCP Server.
Instructions
Create a new pull request in a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
owner | Yes | ||
repo | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"base": {
"type": "string"
},
"body": {
"type": "string"
},
"draft": {
"default": false,
"type": "boolean"
},
"head": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"body",
"head",
"base"
],
"type": "object"
},
"owner": {
"type": "string"
},
"repo": {
"type": "string"
}
},
"required": [
"owner",
"repo",
"body"
],
"type": "object"
}