getBuild
Retrieve detailed information about specific Jenkins builds or the last build for monitoring, analysis, and automation workflows.
Instructions
Get information about a specific build or the last build
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildNumber | No | Build number (optional, defaults to last build) | |
jobFullName | Yes | Full path of the Jenkins job |
Input Schema (JSON Schema)
{
"properties": {
"buildNumber": {
"description": "Build number (optional, defaults to last build)",
"type": "integer"
},
"jobFullName": {
"description": "Full path of the Jenkins job",
"type": "string"
}
},
"required": [
"jobFullName"
],
"type": "object"
}