action gitea_repo_get_issue_templates { label: "Get available issue templates for a repository" provider: gitea method: GET path: "/repos/{owner}/{repo}/issue_templates" encoding: json input: { type: "object" properties: { owner: { type: "string" } repo: { type: "string" } } required: ["owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }