gitlab_trigger_pipeline
Initiate a pipeline execution in GitLab by specifying the project, branch, and trigger token. Pass custom variables to control the pipeline flow efficiently.
Instructions
Trigger a pipeline run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes | The ID or URL-encoded path of the project | |
ref | Yes | The branch or tag name to run the pipeline for | |
token | Yes | The trigger token | |
variables | No | Variables to pass to the pipeline |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"ref": {
"description": "The branch or tag name to run the pipeline for",
"type": "string"
},
"token": {
"description": "The trigger token",
"type": "string"
},
"variables": {
"additionalProperties": {
"type": "string"
},
"description": "Variables to pass to the pipeline",
"type": "object"
}
},
"required": [
"project_id",
"ref",
"token"
],
"type": "object"
}