From e1b237ff0cc860c5b236a05f18e8e3f07ef6277b Mon Sep 17 00:00:00 2001 From: Igor Pecovnik Date: Tue, 2 Feb 2021 02:14:47 +0100 Subject: [PATCH] Change build cron from every hour to every 3 hours There is no need to check so often even it doesn't make any load --- .github/workflows/cron-beta-repository.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cron-beta-repository.yaml b/.github/workflows/cron-beta-repository.yaml index 7818b7cf8..e62b319ac 100644 --- a/.github/workflows/cron-beta-repository.yaml +++ b/.github/workflows/cron-beta-repository.yaml @@ -3,7 +3,7 @@ on: push: branches: master schedule: - - cron: '0 * * * *' + - cron: '0 */3 * * *' jobs: build: runs-on: [runner2]