Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change the repository location for a pipeline in Azure Pipelines

I have imported a repository from BitBucket to GitHub. How can I point the existing pipeline in Azure Pipelines to the new repository location? The UI has failed me so far.

like image 335
Ola Eldøy Avatar asked Sep 11 '25 11:09

Ola Eldøy


1 Answers

Simplest way is to create a new pipeline, link it to the github repo and point it to the existing yaml file.

But there is a way to retarget the existing pipeline.

  • Edit the pipeline
  • In the upper right corner open the ... menu
  • Pick the ⚡ Triggers option
  • Click the YAML tab
  • Click the Get Sources option
  • Reconfigure the source repo

Step by step ideo of the above steps.

like image 155
jessehouwing Avatar answered Sep 13 '25 00:09

jessehouwing