action gitea_get_blob { label: "Gets the blob of a repository." provider: gitea method: GET path: "/repos/{owner}/{repo}/git/blobs/{sha}" encoding: json input: { type: "object" properties: { owner: { type: "string" } repo: { type: "string" } sha: { type: "string" } } required: ["owner", "repo", "sha"] additionalProperties: false } output: { type: "object" additionalProperties: true } }