action gitea_repo_get_git_hook { label: "Get a Git hook" provider: gitea method: GET path: "/repos/{owner}/{repo}/hooks/git/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } owner: { type: "string" } repo: { type: "string" } } required: ["id", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }