list_repositories
Retrieve and organize repositories in a specified Azure DevOps project using the project ID, with an option to include reference links for detailed access.
Instructions
List repositories in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
includeLinks | No | Whether to include reference links | |
projectId | Yes | The ID or name of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"includeLinks": {
"description": "Whether to include reference links",
"type": "boolean"
},
"projectId": {
"description": "The ID or name of the project",
"type": "string"
}
},
"required": [
"projectId"
],
"type": "object"
}