action gitea_repo_get_pull_review { label: "Get a specific review for a pull request" provider: gitea method: GET path: "/repos/{owner}/{repo}/pulls/{index}/reviews/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } index: { type: "integer" format: "int64" } owner: { type: "string" } repo: { type: "string" } } required: ["id", "index", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }