build_get_changes
Retrieve changes linked to a specific build in Azure DevOps, including source changes and paginated results, using project ID and build ID as inputs.
Instructions
Get the changes associated with a specific build.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
buildId | Yes | ID of the build to get changes for | |
continuationToken | No | Continuation token for pagination | |
includeSourceChange | No | Whether to include source changes in the results, defaults to false | |
project | Yes | Project ID or name to get the build changes for | |
top | No | Number of changes to retrieve, defaults to 100 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"buildId": {
"description": "ID of the build to get changes for",
"type": "number"
},
"continuationToken": {
"description": "Continuation token for pagination",
"type": "string"
},
"includeSourceChange": {
"description": "Whether to include source changes in the results, defaults to false",
"type": "boolean"
},
"project": {
"description": "Project ID or name to get the build changes for",
"type": "string"
},
"top": {
"default": 100,
"description": "Number of changes to retrieve, defaults to 100",
"type": "number"
}
},
"required": [
"project",
"buildId"
],
"type": "object"
}