From a7c52db406c518e95a20af61ef891f1f5015efc5 Mon Sep 17 00:00:00 2001
From: Sergio Oliveira Campos <seocam@seocam.com>
Date: Fri, 21 Aug 2020 14:11:24 -0300
Subject: [PATCH] Prevent Azure pipelines to build containers on PRs

Azure is building Centos and Fedora containers in every PR. We only need
to have containers builds on a nightly build so we are disabling the
default triggers from Azure.
---
 tests/azure/build-containers.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tests/azure/build-containers.yml b/tests/azure/build-containers.yml
index 2f987809..628d20b9 100644
--- a/tests/azure/build-containers.yml
+++ b/tests/azure/build-containers.yml
@@ -6,6 +6,9 @@ schedules:
   branches:
     include:
     - master
+  always: true
+
+trigger: none
 
 pool:
   vmImage: 'ubuntu-18.04'
-- 
GitLab