action gitea_repo_get_release_attachment { label: "Get a release attachment" provider: gitea method: GET path: "/repos/{owner}/{repo}/releases/{id}/assets/{attachment_id}" encoding: json input: { type: "object" properties: { attachment_id: { type: "integer" format: "int64" } id: { type: "integer" format: "int64" } owner: { type: "string" } repo: { type: "string" } } required: ["attachment_id", "id", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }