AZ-400 • Practice Test 12
Free AZ-400 practice test — 15 questions with explanations. Set 12. No signup required.
Refer to the exhibit. A developer creates a pipeline with this YAML. When a commit is pushed to the 'main' branch of the repository 'MyProject/MyRepo', the pipeline does NOT trigger. Which is the most likely cause?
resources:
repositories:
- repository: internal
type: git
name: MyProject/MyRepo
ref: refs/heads/main
trigger:
branches:
include:
- main
- release/*
pool:
vmImage: 'ubuntu-latest'
steps:
- checkout: self
- checkout: internal
- script: echo "Building..."