updateBuild
Modify Jenkins build display names and descriptions to maintain accurate tracking and documentation of build processes.
Instructions
Update build display name and/or description
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| buildNumber | No | Build number (optional, defaults to last build) | |
| description | No | New description for the build | |
| displayName | No | New display name for the 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"
},
"description": {
"description": "New description for the build",
"type": "string"
},
"displayName": {
"description": "New display name for the build",
"type": "string"
},
"jobFullName": {
"description": "Full path of the Jenkins job",
"type": "string"
}
},
"required": [
"jobFullName"
],
"type": "object"
}