action gitea_repo_get_push_mirror_by_remote_name { label: "Get push mirror of the repository by remoteName" provider: gitea method: GET path: "/repos/{owner}/{repo}/push_mirrors/{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 } }