action gitea_issue_subscriptions { label: "Get users who subscribed on an issue." provider: gitea method: GET path: "/repos/{owner}/{repo}/issues/{index}/subscriptions" 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 } }