From 3eb4407e441b539c81c6ea8cc797f97536abd01f Mon Sep 17 00:00:00 2001 From: Mark Plesko Date: Wed, 31 May 2023 22:52:46 -0700 Subject: [PATCH] Update runtime-codeql.yml to run 3x/week (#86979) --- eng/pipelines/runtime-codeql.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/eng/pipelines/runtime-codeql.yml b/eng/pipelines/runtime-codeql.yml index 62c002926b70..34fa555d180f 100644 --- a/eng/pipelines/runtime-codeql.yml +++ b/eng/pipelines/runtime-codeql.yml @@ -2,8 +2,13 @@ trigger: none schedules: - - cron: 0 12 * * 1 - displayName: Weekly Monday CodeQL/Semmle run + - cron: 0 12 * * 1,4,6 + # CodeQL auto-injects into other pipelines and will do a scan if one hasn't + # been done in 72 hours. These can cause timeouts, so we ensure that one has + # already been performed. We can increase this to 4x/week or be more + # sophisticated if the 72 hour period ending Thursday ("4" in the cron line) + # causes a problem. + displayName: 3x/week CodeQL/Semmle run branches: include: - main