From 8a2aeff9a0af3d976e0a0e639f3237b4711e1311 Mon Sep 17 00:00:00 2001 From: Fabio Ivona Date: Mon, 6 Feb 2023 09:13:07 +0100 Subject: [PATCH] add scheduled workflow runs --- .github/workflows/static.yml | 6 +++++- .github/workflows/tests.yml | 7 ++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 0a8089f6..ed46ad6e 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,6 +1,10 @@ name: Static Analysis -on: ['push', 'pull_request'] +on: + push: + pull_request: + schedule: + - cron: '0 0 * * *' jobs: static: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e8733b0f..efc2aa5d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,11 @@ name: Tests -on: ['push', 'pull_request'] +on: + push: + pull_request: + schedule: + - cron: '0 0 * * *' + jobs: ci: