From c7bab1c25c2ac9247fd709446d0508299847a905 Mon Sep 17 00:00:00 2001 From: John Mulligan <33039589+phlogistonjohn@users.noreply.github.com> Date: Sun, 25 Oct 2020 10:19:43 -0400 Subject: [PATCH] Enable a daily run of the CI Recently, changes to ceph nautilus reminded me that due to the low rate of PRs we don't always catch things that change in our dependencies right away. I propose adding a daily CI run that help catch these kind of things sooner and can help distinguish between a PR related failure and random flakiness and upstream changes. --- .github/workflows/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index db36024..0845024 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,6 +8,8 @@ on: branches: [ master ] pull_request: branches: [ master ] + schedule: + - cron: 1 1 * * * jobs: # Run static/code-quality checks