Jun 24 2022 12:25 PM
We have a pipeline that we want to trigger after another pipeline finishes from the "development" branch
resources:
Jun 27 2022 08:49 AM - edited Jun 27 2022 08:51 AM
How does the pipeline DatabaseIncentives that I just added the resource too, know that it should trigger after the Database.Incentives_TestData pipeline has finished? The yaml file is just a text file checked in with the resource added. Does the pipeline name " - pipeline: DatabaseIncentives " have to match the pipeline name that this resource is placed in?
resources:
repositories:
- repository: yamltemplates
type: git
name: Onlife/yamltemplates
- repository: build_scripts
type: git
name: Onlife/devops_build
pipelines:
- pipeline: DatabaseIncentives
source: Database.Incentives_TestData
trigger:
branches:
include:
- development
Jun 27 2022 12:28 PM