action gitea_repo_get_branch_protection { label: "Get a specific branch protection for the repository" provider: gitea method: GET path: "/repos/{owner}/{repo}/branch_protections/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } owner: { type: "string" } repo: { type: "string" } } required: ["name", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }