triggerBuild
Trigger Jenkins job builds programmatically by specifying job path and optional parameters to automate CI/CD workflows through natural language commands.
Instructions
Trigger a build for a Jenkins job
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jobFullName | Yes | Full path of the Jenkins job (e.g., "folder/job-name") | |
| parameters | No | Build parameters (optional) |
Input Schema (JSON Schema)
{
"properties": {
"jobFullName": {
"description": "Full path of the Jenkins job (e.g., \"folder/job-name\")",
"type": "string"
},
"parameters": {
"additionalProperties": true,
"description": "Build parameters (optional)",
"type": "object"
}
},
"required": [
"jobFullName"
],
"type": "object"
}