action gitea_repo_list_git_refs { label: "Get specified ref or filtered repository's refs" provider: gitea method: GET path: "/repos/{owner}/{repo}/git/refs/{ref}" encoding: json input: { type: "object" properties: { owner: { type: "string" } ref: { type: "string" } repo: { type: "string" } } required: ["owner", "ref", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }