AZ-400 • Practice Test 21
Free AZ-400 practice test — 15 questions with explanations. Set 21. No signup required.
Refer to the exhibit. The YAML pipeline triggers on commits to main and develop branches, and pull requests targeting develop. A developer pushes a commit directly to main. What will happen?
Refer to the exhibit.
```yaml
# azure-pipelines.yml
trigger:
branches:
include:
- main
- develop
pr:
branches:
include:
- develop
```