From c3466e74a2d72ede0d121aabdf687fa8d348bfc6 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 6 Jun 2021 21:01:08 +0200 Subject: [PATCH] Update CI schedule to include periodic runs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit … and also trigger on pull requests. --- .github/workflows/ci.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9c31ab2..7dee1e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,18 @@ -on: [push] +on: + # Trigger the workflow on push or + # pull request, but only for the + # master branch. + push: + branches: + - master + pull_request: + branches: + - master + # Weekly run to account for + # changed dependencies. + schedule: + - cron: '17 03 * * 0' + name: CI jobs: build: -- 2.39.2