Azure DevOps repository and pipeline
Defines the settings for Azure DevOps integration, including authentication token and pipeline agent pool.
Type: azure-devops-configuration
Properties
| Name | Type | Description | Required |
|---|---|---|---|
| setup | object | Authentication and pipeline configuration details for Azure DevOps integration. | yes |
Additional Properties: not allowed
Example
{
"setup": {
"project": "CryptoKong",
"agent_pool": "Default",
"access_token": "pat_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"organization": "my-azure-org"
}
}
setup: Setup
Authentication and pipeline configuration details for Azure DevOps integration.
Properties
| Name | Type | Description | Required |
|---|---|---|---|
| project | string | Azure devops project where your repositories will be created. | yes |
| agent_pool | string | The name of the agent pool to be used for pipeline execution. Minimal Length: 1 | yes |
| access_token (Personal Access Token) | string | The Personal Access Token (PAT) used to authenticate with Azure DevOps services. Minimal Length: 52 | yes |
| organization | string | Azure DevOps organization that owns the project (the path segment in https://dev.azure.com/<organization>).Minimal Length: 1 | yes |
Additional Properties: not allowed
Example
{
"project": "CryptoKong",
"agent_pool": "Default",
"access_token": "pat_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"organization": "my-azure-org"
}