13

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.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341
Ola Eldøy
  • 5,720
  • 7
  • 49
  • 82

1 Answers1

34

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.

jessehouwing
  • 106,458
  • 22
  • 256
  • 341