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: 'ubuntu-latest'
resources:
repositories:
- repository: templates
type: git
name: PROJECTNAME/Repo 1
ref: Repo1Branch
steps:
- template: azure-pipelines.yml@Repo 1