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