action gitea_repo_get_tag { label: "Get the tag of a repository by tag name" provider: gitea method: GET path: "/repos/{owner}/{repo}/tags/{tag}" encoding: json input: { type: "object" properties: { owner: { type: "string" } repo: { type: "string" } tag: { type: "string" } } required: ["owner", "repo", "tag"] additionalProperties: false } output: { type: "object" additionalProperties: true } }