Questions tagged [azure-repos]

Azure Repos is the version control repository for Azure DevOps (previously VSTS) using either TFVC or Git.

Azure Repos is the version control repository for Azure DevOps (previously Visual Studio Team Services, VSTS) using either TFVC or Git.

380 questions
0
votes
1 answer

Commit Status not working with Continuous Deployment Trigger in Azure Release via API

We have an Azure Repository which triggers a Release-Pipeline every time something is pushed to the main branch. When a Release is triggered it shows its status (succeeded) on the right side in the commits in Azure Repos like on the following…
0
votes
1 answer

Azure DevOps GitVersion behaviour with pull request in mainline mode

I'm trying to set up a DevOps pipeline for a .NET Standard library project for a NuGet package. I'm using GitVersion for keeping track of semantic version for the package. I do the build with VSBuild@1 task so I just include GitVersion as…
Yuhis
  • 502
  • 8
  • 16
0
votes
1 answer

Retrieve git branch content via api on Azure Devops

I'm trying to list all files for a specific branch in a Azure Devops Repo via the API. Anyone knows if this is possible. I only found information about how to list the contents of a repo. However, it's unclear from which branch the info is comming…
0
votes
1 answer

Backup of Azure Repos

I got a requirement to backup Azure Devops Repos to either Azure Blob or Sharepoint Libraries. I have created a pipeline using this approach. But my pipeline fails in the first step itself while copying Repo to Working Directory. Error : 400 error :…
zainul
  • 108
  • 12
0
votes
2 answers

Test Script is running in Postman but got unexpected token '<' at 1:1 when ran in Azure pipeline using Newman

I have tried to integrate Postman collection in Azure as per the instructions on Medium post I have my Postman tests running under newman however i am seeing error. I have tried both the newman addon and command line tasks.
Alka
  • 163
  • 1
  • 10
0
votes
2 answers

Unable to retrieve the Azure Wiki page at 'Home Page/Page1/Page2/SpecificPage'. The returned HTTP code was '404'

Issue: “Unable to retrieve the Azure Wiki page at 'Home Page/Page1/Page2/SpecificPage'. The returned HTTP code was '404'.” When this happens: Migrating a Wiki from Azure DevOps Server 2020 to “Azure DevOps Services”. When executing the Pipeline with…
0
votes
1 answer

Azure DevOps and permissions to specific projects

I have a solution on Azure DevOps. It uses GIT as a version control. Now I have added a new user to the repository. I just want this user to be able to work on 2, 3 projects (I have about 35 projects in solution). So I would like to do something…
Adam Jachocki
  • 1,897
  • 1
  • 12
  • 28
0
votes
0 answers

Azure Repo Git Integration With Atlassian Jira

At work we are using Azure repositories as version control and Jira for our project management needs and issue management. We wanted to integrate both of these platform, so I sucsseffully installed Azure Pipeline For Jira and tested it out with a…
0
votes
1 answer

Azure DevOps remote branches are not visible in one repository

The list of actions I do and the result: Locally I have a master branch and I have it on a remote. I create a dev/test branch locally I push it to the remote On the Azure DevOps website I can see that branch appeared in Branches in the "Mine"…
hiichaki
  • 834
  • 9
  • 19
0
votes
1 answer

Markdown IMG doesn't show in Azure Repos README

can't seem to get a hold on this. I'm using Markdown to make my README. When I'm using a relative address, I can see the image in my README in the editor, but when I push the code, the image link is broken inside of Azure Repos.

midoriha_senpai
  • 177
  • 1
  • 16
0
votes
2 answers

Azure Devops Repo branches

On my Azure DevOps I cannot see branches. How can I enable branches?
max
  • 1,505
  • 3
  • 15
  • 38
0
votes
1 answer

Can Use other repositories yml file to other pipeline

Repo 1 and Branch Name: Repo1Branch trigger: - none pool: vmImage: 'ubuntu-latest' steps: - script: echo Hello, world! I want to call Repo 1 form Repo 2 pipeline Repo 2 and Branch Name: Repo2Branch trigger: - none pool: vmImage:…
0
votes
1 answer

Obtain commits associated with pipeline run

In the Azure Pipelines Bun/Run view I can see that the current build is associated with the last N commits: Last 7 commits This is much more valuable than the Build.SourceVersion pipeline variable for incremental build's sake as I could be able to…
0
votes
1 answer

Azure Pipelines YAML source

For our project, it is vital to know to understand the behavior of our yaml azure pipelines. So is there ever a situation where the azure pipeline, with ci triggers for branches, would use a different source yaml file other than the yaml file…
Alexander
  • 41
  • 1
0
votes
2 answers

Long lived and Short lived branches query in SonarQube

I have a query with SonaQube analyzing for long lived and short lived branches. Suppose if I have branches main,release,master,feature branches in my azurerepos. I am doing a sonar amaysis on the source code...now if I have created some pull request…