action gitlab_get_v3_projects_id_builds_build_id_trace { label: "Get a trace of a specific build of a project" description: "Get a trace of a specific build of a project" provider: gitlab method: GET path: "/v3/projects/{id}/builds/{build_id}/trace" encoding: json input: { type: "object" properties: { build_id: { type: "string" } id: { type: "string" } } required: ["build_id", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }