action gitea_get_annotated_tag { label: "Gets the tag object of an annotated tag (not lightweight tags)" provider: gitea method: GET path: "/repos/{owner}/{repo}/git/tags/{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 } }