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