action gitea_issue_get_issue_reactions { label: "Get a list reactions of an issue" provider: gitea method: GET path: "/repos/{owner}/{repo}/issues/{index}/reactions" encoding: json input: { type: "object" properties: { index: { type: "integer" format: "int64" } limit: { type: "integer" } owner: { type: "string" } page: { type: "integer" } repo: { type: "string" } } required: ["index", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }