From 28241f25dc70024b9bd39fe71d52c1456cd4ed78 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Sat, 7 May 2022 12:44:14 -0600 Subject: [PATCH] CI: Ensure that Azure nightly pipeline doesn't run on CI or PR triggers GitHub YAML pipelines have both of these on by default, so we need to explicitly disable them. --- Meta/Azure/nightly-pipeline.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Meta/Azure/nightly-pipeline.yml b/Meta/Azure/nightly-pipeline.yml index 7974193136..36a41af669 100644 --- a/Meta/Azure/nightly-pipeline.yml +++ b/Meta/Azure/nightly-pipeline.yml @@ -6,6 +6,11 @@ schedules: include: - master +# Github YAML pipelines have CI and PR triggers on by default. +# We only want this pipeline to run nightly +pr: none +trigger: none + stages: - stage: Toolchain dependsOn: []