From fe3cf5434eb1879a4f0dfa359a4c5057068ca945 Mon Sep 17 00:00:00 2001 From: Ryan Maleki Date: Fri, 25 Mar 2022 12:11:42 -0700 Subject: [PATCH] Changes the schedule so that both actions run every day at 12:00 UTC (5AM PST & 8AM EST) (#1576) This is a better schedule because it runs right before people start working in our team hence giving us a chance to quickly respond to failures, also doesn't take the computing capacity when we need it (during working hours). Finally this will capture more changes than before because there's a chance the code gets updated after hours. --- .github/workflows/{codeql-analysis.yml => codeql-analysis.yaml} | 2 +- .github/workflows/deflake.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename .github/workflows/{codeql-analysis.yml => codeql-analysis.yaml} (97%) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yaml similarity index 97% rename from .github/workflows/codeql-analysis.yml rename to .github/workflows/codeql-analysis.yaml index 428de81bbc25..eba1ccae1656 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yaml @@ -4,7 +4,7 @@ on: push: branches: [ main ] schedule: - - cron: '22 18 * * 0' + - cron: '0 12 * * *' jobs: analyze: diff --git a/.github/workflows/deflake.yml b/.github/workflows/deflake.yml index 6603d63f3c66..73d607561d3b 100644 --- a/.github/workflows/deflake.yml +++ b/.github/workflows/deflake.yml @@ -1,7 +1,7 @@ name: Deflake on: schedule: - - cron: '22 18 * * 0' + - cron: '0 12 * * *' jobs: build: runs-on: ubuntu-latest