Gitee

by normal-coder
Verified

get_pull_request

获取 Gitee 仓库中的特定 Pull Request

Input Schema

NameRequiredDescriptionDefault
ownerYesRepository owner path (enterprise, organization, or personal path)
pull_numberYesPull Request number
repoYesRepository path

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "owner": { "description": "Repository owner path (enterprise, organization, or personal path)", "type": "string" }, "pull_number": { "description": "Pull Request number", "type": "number" }, "repo": { "description": "Repository path", "type": "string" } }, "required": [ "owner", "repo", "pull_number" ], "type": "object" }