get_job_log
Retrieve pipeline job trace output to debug failed tests and analyze CI/CD failures by providing the job ID.
Instructions
Get the trace/log output for a specific pipeline job. Perfect for debugging failed tests and understanding CI/CD failures.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| job_id | Yes | ID of the pipeline job (obtained from get_merge_request_pipeline) |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"description": "ID of the pipeline job (obtained from get_merge_request_pipeline)",
"minimum": 1,
"type": "integer"
}
},
"required": [
"job_id"
],
"type": "object"
}