action gitea_issue_get_comment { label: "Get a comment" provider: gitea method: GET path: "/repos/{owner}/{repo}/issues/comments/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } owner: { type: "string" } repo: { type: "string" } } required: ["id", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }