From 355f48860c9f9261a916b81a716130d08531f713 Mon Sep 17 00:00:00 2001 From: Esteban Maya Date: Mon, 1 Apr 2024 20:50:48 -0500 Subject: [PATCH] =?utf8?q?=F0=9F=91=B7=20Add=20cron=20to=20run=20test=20on?= =?utf8?q?ce=20a=20week=20on=20monday=20(#869)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 89da640d..990bf46d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,6 +14,9 @@ on: description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' required: false default: 'false' + schedule: + # cron every week on monday + - cron: "0 0 * * 1" jobs: test: -- 2.47.2