build_get_definition_revisions
Retrieves a list of revisions for a specific build definition in Azure DevOps projects, enabling tracking and management of build definition changes over time.
Instructions
Retrieves a list of revisions for a specific build definition.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
definitionId | Yes | ID of the build definition to get revisions for | |
project | Yes | Project ID or name to get the build definition revisions for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"definitionId": {
"description": "ID of the build definition to get revisions for",
"type": "number"
},
"project": {
"description": "Project ID or name to get the build definition revisions for",
"type": "string"
}
},
"required": [
"project",
"definitionId"
],
"type": "object"
}