I have a resource section in my pipeline through which I want to trigger my current pipeline when the source pipeline, which is pull request automated is completed.
But the issue is that although the PR automated pipeline “pqr” is completed the current pipeline is not getting triggered.
I used below code
resources:
pipelines:
- pipeline: abc
source: pqr
project: kvi
trigger:
branches:
include:
- "*"
pr:
branches:
include:
- "*"
```
I get error as **/azure-pipelines.yml (Line: 17, Col: 9): Unexpected value 'pr'
74518**