trigger_build
Trigger a new build in TeamCity CI/CD server by specifying the build type ID, with optional branch selection and comment for tracking purposes.
Instructions
Trigger a new build
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| branchName | No | Branch to build (optional) | |
| buildTypeId | Yes | Build type ID to trigger | |
| comment | No | Build comment (optional) |
Input Schema (JSON Schema)
{
"properties": {
"branchName": {
"description": "Branch to build (optional)",
"type": "string"
},
"buildTypeId": {
"description": "Build type ID to trigger",
"type": "string"
},
"comment": {
"description": "Build comment (optional)",
"type": "string"
}
},
"required": [
"buildTypeId"
],
"type": "object"
}