action gitea_issue_get_milestone { label: "Get a milestone" provider: gitea method: GET path: "/repos/{owner}/{repo}/milestones/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } owner: { type: "string" } repo: { type: "string" } } required: ["id", "owner", "repo"] additionalProperties: false } output: { type: "object" additionalProperties: true } }