action gitea_repo_get_raw_file { label: "Get a file from a repository" provider: gitea method: GET path: "/repos/{owner}/{repo}/raw/{filepath}" encoding: json input: { type: "object" properties: { filepath: { type: "string" } owner: { type: "string" } ref: { type: "string" } repo: { type: "string" } } required: ["filepath", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }