az-400-devops-engineer-expert video for note: This question is part of a series of questions that present the same scenario. Each question in the series
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. You use an Azure Pipelines pipeline to build and release web apps. You need to configure the pipeline to meet the following requirements: Only run when there is a change in the /webapp folder. Only run when a PR is created. Solution : You configure the pipeline definition by using the following elements. . . . trigger: paths: include: /webapp branches: include: refs/head/pr . . . Does this meet the goal?