From 73a2bd6a4be16e06ceb8e098489c36dec5296bb4 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Mon, 4 Jan 2021 19:41:42 -0600 Subject: [PATCH] Add pr section to azure config (#20758) Adds the `pr` section from https://docs.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#pr-triggers to filter paths that don't require test runs on PRs. --- azure-pipelines.yml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 11de5bce016a..008c8f15e765 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,10 +6,10 @@ trigger: include: - '*' exclude: - - bench/* - - docs/* - - errors/* - - examples/* + - bench + - docs + - errors + - examples # Do not run Azure on `canary`, `master`, or release tags. This unnecessarily # increases the backlog, and the change was already tested on the PR. branches: @@ -20,6 +20,17 @@ trigger: - master - refs/tags/* +pr: + # Do not run Azure CI for docs-only/example-only changes: + paths: + include: + - '*' + exclude: + - bench + - docs + - errors + - examples + variables: YARN_CACHE_FOLDER: $(Pipeline.Workspace)/.yarn NEXT_TELEMETRY_DISABLED: '1'