Azure DevOps resources repo: self

Viewed 3943
3 Answers

"self" means "the repository that the YAML file is in".

Daniel Mann answered this question. It turns out, I did not need the repo: self part. This part is what I actually put in my YAML azure-pipelines.yml file and it is working for us. Thanks again!

trigger:
  branches:
    include:
      - master
      - features/*
      - bugs/*
    paths:
      exclude:
        - README.md

jobs:
   - template: path/to/backendRepo/azure-pipelines.yml
     parameters:
       componentName: BackEndStuff
   - template: path/to/frontendRepo/azure-pipelines.yml
     parameters:
       componentName: FrontEndStuff
Related