action gitea_repo_get_by_id { label: "Get a repository by id" provider: gitea method: GET path: "/repositories/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }