AZDO: Common Tasks

less than 1 minute read

Description:

Different tasks I have done in Azure Devops consolidated because they are too short for their own posts.

To Resolve:

  1. To create a new pipeline: Pipelines => New => Azure Repos Git => Point to Yaml you just pushed => Rename pipeline/Move to folder => Run pipeline

  2. Give pipeline permissions to other pipelines => Settings => Service Connections => $connection => Elipses => Security => Add pipleline to list of pipleine permimissions

    • This is needed if you use one pipeline inside another
    1
    2
    3
    4
    5
    6
    
    resources:
       repositories:
       - repository: Module_Repo_1
          type: git
          name: My_Project/Module_Repo_1
          ref: main
    
  3. Create a new Repo: Repos => Dropdown of Repo name at the top => + New Repository

Tags:

Updated:

Comments