Forum Discussion
angybrim
Sep 12, 2024Copper Contributor
Triggering another pipeline after pipeline, that triggers when PR is opened, completes
Hi, I have a situation in which when a PR is opened (code is still on a feature branch at this point), a pipeline ('Source pipeline)' runs which does a build and triggers a seperate test pipel...
Kidd_Ip
Jun 09, 2025MVP
Please also verify PR Validation Triggers:
trigger:
branches:
include:
- '*'
pr:
branches:
include:
- '*'
Pipeline Dependencies:
resources:
pipelines:
- pipeline: 'SourcePipeline'
source: 'Source pipeline'
trigger: true