get_pipeline
Retrieve detailed information about a specific GitLab pipeline using project ID and pipeline ID to monitor build status, stages, and execution details.
Instructions
Get details of a specific pipeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pipeline_id | Yes | Pipeline ID | |
project_id | Yes | Project ID or path |
Input Schema (JSON Schema)
{
"properties": {
"pipeline_id": {
"description": "Pipeline ID",
"type": "number"
},
"project_id": {
"description": "Project ID or path",
"type": "string"
}
},
"required": [
"project_id",
"pipeline_id"
],
"type": "object"
}