action gitea_repo_list_git_hooks { label: "List the Git hooks in a repository" provider: gitea method: GET path: "/repos/{owner}/{repo}/hooks/git" encoding: json input: { type: "object" properties: { owner: { type: "string" } repo: { type: "string" } } required: ["owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }