From 686d6d114a9b0eda47dc93e8995f06921194eff8 Mon Sep 17 00:00:00 2001 From: Viktor Babanov Date: Thu, 26 Aug 2021 00:09:23 +0300 Subject: [PATCH] Schedule GitHub workflows (#44) --- .github/workflows/build.yml | 6 ++++-- .github/workflows/mutation.yml | 4 ++-- .github/workflows/static.yml | 6 ++++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8f92786..1eb6752 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,8 @@ on: - - pull_request - - push + pull_request: + push: + schedule: + - cron: '0 0 * * *' name: build diff --git a/.github/workflows/mutation.yml b/.github/workflows/mutation.yml index 7878064..1350299 100644 --- a/.github/workflows/mutation.yml +++ b/.github/workflows/mutation.yml @@ -1,8 +1,8 @@ on: pull_request: push: - branches: - - "master" + schedule: + - cron: '0 0 * * *' name: mutation test diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 2867564..789b8c5 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -1,6 +1,8 @@ on: - - pull_request - - push + pull_request: + push: + schedule: + - cron: '0 0 * * *' name: static analysis