From 206806a246f306992543515c8074ce266e64e250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Fri, 25 Nov 2022 15:25:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Add=20scheduled=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 3 +++ .github/workflows/test.yml | 3 +++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f0708c5..9f94c8c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,6 +4,9 @@ on: push: branches: - master + schedule: + # cron every week on monday + - cron: "0 0 * * 1" jobs: build: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 08310f3..dd66893 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,6 +6,9 @@ on: - master pull_request: types: [opened, synchronize] + schedule: + # cron every week on monday + - cron: "0 0 * * 1" jobs: build: