jenkins_get_build_steps
Retrieve detailed status of steps for a specific build in Jenkins CI/CD pipelines by specifying the application and build number, facilitating precise pipeline monitoring and troubleshooting.
Instructions
Obtener el estado de los steps de un build específico
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app | Yes | Nombre de la aplicación | |
branch | No | Rama de Git (por defecto: main) | |
buildNumber | Yes | Número del build |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"app": {
"description": "Nombre de la aplicación",
"type": "string"
},
"branch": {
"description": "Rama de Git (por defecto: main)",
"type": "string"
},
"buildNumber": {
"description": "Número del build",
"type": "number"
}
},
"required": [
"app",
"buildNumber"
],
"type": "object"
}