action gitea_repo_get_archive { label: "Get an archive of a repository" provider: gitea method: GET path: "/repos/{owner}/{repo}/archive/{archive}" encoding: json input: { type: "object" properties: { archive: { type: "string" } owner: { type: "string" } repo: { type: "string" } } required: ["archive", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }