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