scheduleBuild
Schedule Jenkins builds to run at specific times with optional parameters for automated job execution and workflow management.
Instructions
Schedule a Jenkins build to run at a specific time
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| jobFullName | Yes | Full path of the Jenkins job | |
| parameters | No | Build parameters (optional) | |
| scheduleTime | Yes | Time to schedule the build (e.g., '22:15', '10:30 PM', or full datetime string) |
Input Schema (JSON Schema)
{
"properties": {
"jobFullName": {
"description": "Full path of the Jenkins job",
"type": "string"
},
"parameters": {
"additionalProperties": true,
"description": "Build parameters (optional)",
"type": "object"
},
"scheduleTime": {
"description": "Time to schedule the build (e.g., '22:15', '10:30 PM', or full datetime string)",
"type": "string"
}
},
"required": [
"jobFullName",
"scheduleTime"
],
"type": "object"
}