action lgtm_get_project_by_url_identifier { label: "Get project by URL identifier" description: "Get the latest summary for a specific project using the project's URL identifier `{provider}/{org}/{name}`.\n\nTo find the URL identifier for a project, view the project overview page in LGTM. The URL identifier follows after `/projects`. For example, for a project with the URL `https://lgtm.example.com/projects/g/apache/commons-io` the URL identifier is `g/apache/commons-io`. In the example, `g` represents the `provider` (repository host), `apache` is the `organization` and `commons-io` is the `name` of the repository.\n" provider: lgtm method: GET path: "/projects/{provider}/{org}/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } org: { type: "string" } provider: { type: "string" } } required: ["name", "org", "provider"] additionalProperties: false } output: { type: "object" } }