action gitea_repo_get_branch { label: "Retrieve a specific branch from a repository, including its effective branch protection" provider: gitea method: GET path: "/repos/{owner}/{repo}/branches/{branch}" encoding: json input: { type: "object" properties: { branch: { type: "string" } owner: { type: "string" } repo: { type: "string" } } required: ["branch", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }