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.
This commit is contained in:
Sergio Oliveira Campos
2020-08-21 14:11:24 -03:00
parent a8e9b2ae00
commit a7c52db406

View File

@@ -6,6 +6,9 @@ schedules:
branches:
include:
- master
always: true
trigger: none
pool:
vmImage: 'ubuntu-18.04'