action gitea_repo_list_topics { label: "Get list of topics that a repository has" provider: gitea method: GET path: "/repos/{owner}/{repo}/topics" encoding: json input: { type: "object" properties: { limit: { type: "integer" } owner: { type: "string" } page: { type: "integer" } repo: { type: "string" } } required: ["owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }