build_get_log
Retrieve build logs from Azure DevOps by specifying the project and build ID, enabling efficient troubleshooting and monitoring of build processes with PAT authentication.
Instructions
Retrieves the logs for a specific build.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildId | Yes | ID of the build to get the log for | |
project | Yes | Project ID or name to get the build log 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 log for",
"type": "number"
},
"project": {
"description": "Project ID or name to get the build log for",
"type": "string"
}
},
"required": [
"project",
"buildId"
],
"type": "object"
}