build_get_status
Retrieve the status of a specific build in Azure DevOps by providing the project ID or name and build ID using Personal Access Token authentication.
Instructions
Fetches the status of a specific build.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildId | Yes | ID of the build to get the status for | |
project | Yes | Project ID or name to get the build status for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"buildId": {
"description": "ID of the build to get the status for",
"type": "number"
},
"project": {
"description": "Project ID or name to get the build status for",
"type": "string"
}
},
"required": [
"project",
"buildId"
],
"type": "object"
}