action gitea_issue_get_comments { label: "List all comments on an issue" provider: gitea method: GET path: "/repos/{owner}/{repo}/issues/{index}/comments" encoding: json input: { type: "object" properties: { before: { type: "string" format: "date-time" } index: { type: "integer" format: "int64" } owner: { type: "string" } repo: { type: "string" } since: { type: "string" format: "date-time" } } required: ["index", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }