From 5e44548657383427a3b8f0dafe34a0db98753807 Mon Sep 17 00:00:00 2001 From: Chris Mason <47318+cmason@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:52:48 -0500 Subject: [PATCH] Run CI on a recurring schedule (#300) In addition to running on every push or pull request, the CI action will now run on a recurring schedule of once a month. The schedule is set to run on the 1st of each month at 02:03 UTC time. The time is completely arbitrary but I avoided the top/bottom of the hour since most cron jobs tend to occur there. --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6427c0..bdf6cbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,10 @@ name: CI on: - - push - - pull_request + push: + pull_request: + schedule: + - cron: "3 2 1 * *" jobs: test: