get_pipeline_variables
Retrieve variables configured for a specific GitLab CI/CD pipeline to access runtime configuration values and secrets used during pipeline execution.
Instructions
Get variables of a 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"
}