get_job_logs
Retrieve the trace file for a specific GitLab CI/CD job by providing the project identifier and job ID to access execution logs.
Instructions
Get the log (trace) file of a specific job
Input Schema
Name | Required | Description | Default |
---|---|---|---|
job_id | Yes | Job ID | |
project_id | Yes | Project ID or path |
Input Schema (JSON Schema)
{
"properties": {
"job_id": {
"description": "Job ID",
"type": "number"
},
"project_id": {
"description": "Project ID or path",
"type": "string"
}
},
"required": [
"project_id",
"job_id"
],
"type": "object"
}