From 4d5f77b2ddf85f31ae5c124184bc17cb7d5faff8 Mon Sep 17 00:00:00 2001 From: Tony Anziano Date: Fri, 30 Oct 2020 08:55:31 -0700 Subject: [PATCH] Disabled PR validation for static analysis, and changed scheduled time to midnight PST instead of UTC. --- azure-pipelines-static-analysis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/azure-pipelines-static-analysis.yml b/azure-pipelines-static-analysis.yml index a98aea8c8c..32d3af9961 100644 --- a/azure-pipelines-static-analysis.yml +++ b/azure-pipelines-static-analysis.yml @@ -1,12 +1,15 @@ -# Run this job every night at midnight on the main branch +# Run this job every night at midnight (PST) on the main branch schedules: -- cron: "0 0 * * *" +- cron: "0 7 * * *" displayName: Nightly static analysis build branches: include: - main +# Do not run PR validation +pr: none + # Semmle task only works on Windows pool: vmImage: 'windows-latest'