From b23f705f92c70e5bbb70fa439a878e580b168195 Mon Sep 17 00:00:00 2001
From: Ralph Giles <giles@thaumas.net>
Date: Thu, 15 Jul 2021 14:25:05 -0700
Subject: [PATCH] Github Actions: Run deployment once a month.

Run ci periodically even if there have been no changes to the
repository. This should pick up updates to dependencies and
detect any bit rot.

Some of the starter workflows use `$cron-daily` as an example,
but the corresponding `$cron-monthly` macro doesn't seem to
be available, so I picked a random date and time.

Neither macro is mentioned in the documentation.
---
 .github/workflows/deploy.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index 4f9387c..3ac128b 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -3,6 +3,8 @@ on:
   push:
     branches:
       - $default-branch
+  schedule:
+    - cron: 2 4 10 * *
 jobs:
   build:
     runs-on: ubuntu-latest
-- 
GitLab