Service config setup for a Azure DevOps repo

The following are the details required for a service whose repository is hosted in Azure DevOps.

After selecting the git provider as Azure DevOps, the following details will be required as shown in the image.

Copy the clone url of your repository to fill the details.

Suppose if the url to clone your repositpry is https://dev.azure.com/hypertest/banking/_git/sample-banking-node.

  • Base URL will be dev.azure.com.

  • Organization will be hypertest.

  • Project will be banking.

  • Repo Name will be sample-banking-node.

The following are the steps to create a read access token which is required for running tests on the service.

  1. Click on "User settings" on top left on your repository home screen.

  2. Select "Personal access tokens" from the drop down.

  3. Click on "New Token".

  4. Provide a name and expiry.

  5. Check "Code" read permission and click on create.

  6. Paste the newly created access token in Repo Access Token and click on verify config.

Last updated