action lgtm_get_issue { label: "Get detailed alert information for an issue" description: "Fetch the alert information for an issue in [SARIF](https://lgtm.com/help/lgtm/sarif-results-file) format.\n" provider: lgtm method: GET path: "/issues/{project-id}/{alert-key}" encoding: json input: { type: "object" properties: { "alert-key": { type: "string" } "project-id": { type: "integer" format: "int64" } } required: ["alert-key", "project-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }