From cf0080831654158ab9098f6decd7dbc5d7e8fccd Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys Date: Mon, 27 Jun 2022 15:47:29 -0700 Subject: [PATCH] actions: syncer: Reduce run frequency We don't really need to sync every hour. Bump it to every 6 hours to save the environment for posterity. Fixes #24 --- .github/workflows/syncer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/syncer.yml b/.github/workflows/syncer.yml index 546f26f8..74606372 100644 --- a/.github/workflows/syncer.yml +++ b/.github/workflows/syncer.yml @@ -1,7 +1,7 @@ name: Repo syncer on: schedule: - - cron: "*/60 * * * *" + - cron: "0 */6 * * *" push: branches: - master # We mostly rely on the above cron schedule but having this