update_pull_request
Modify an existing pull request by updating its title and description to reflect changes or improvements in the code review process.
Instructions
Update an existing pull request.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | The new description of the pull request. | |
pull_request_id | Yes | The ID of the pull request. | |
repository_name | Yes | Name of the repository (repo slug) | |
title | No | The new title of the pull request. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "The new description of the pull request.",
"type": "string"
},
"pull_request_id": {
"description": "The ID of the pull request.",
"type": "string"
},
"repository_name": {
"description": "Name of the repository (repo slug)",
"type": "string"
},
"title": {
"description": "The new title of the pull request.",
"type": "string"
}
},
"required": [
"repository_name",
"pull_request_id"
],
"type": "object"
}