list_pipeline_jobs
Retrieve and filter jobs from a specific GitLab pipeline to monitor execution status, track progress, and identify failed or pending tasks.
Instructions
List jobs in a pipeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_retried | No | Include retried jobs | |
pipeline_id | Yes | Pipeline ID | |
project_id | Yes | Project ID or path | |
scope | No | Filter jobs by status |
Input Schema (JSON Schema)
{
"properties": {
"include_retried": {
"default": false,
"description": "Include retried jobs",
"type": "boolean"
},
"pipeline_id": {
"description": "Pipeline ID",
"type": "number"
},
"project_id": {
"description": "Project ID or path",
"type": "string"
},
"scope": {
"description": "Filter jobs by status",
"items": {
"enum": [
"created",
"pending",
"running",
"failed",
"success",
"canceled",
"skipped",
"waiting_for_resource",
"manual"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"project_id",
"pipeline_id"
],
"type": "object"
}