update docs for Azure DevOps

This commit is contained in:
szecsip
2023-08-31 11:50:41 +00:00
parent 06d00032df
commit 24900305d6

View File

@ -90,9 +90,16 @@ All PR-Agent tools have a parameter called `extra_instructions`, that enables to
``` ```
##### Azure DevOps provider ##### Azure DevOps provider
To use Azure DevOps provider set: To use Azure DevOps provider use the following settings in configuration.toml:
``` ```
[config] [config]
git_provider="azure" git_provider="azure"
use_repo_settings_file=false use_repo_settings_file=false
```
And use the following settings (you have to replace the values) in .secrets.toml:
```
[azure_devops]
org = "https://dev.azure.com/YOUR_ORGANIZATION/"
pat = "YOUR_PAT_TOKEN"
``` ```