From e4eeea24d022a544a8bb24b3886276c1e50eee71 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Wed, 8 Nov 2023 20:32:26 +0100 Subject: [PATCH] check update thrice a day (to limit manual triggering) --- .github/workflows/updater.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/updater.yml b/.github/workflows/updater.yml index ad9b07e..7d50139 100644 --- a/.github/workflows/updater.yml +++ b/.github/workflows/updater.yml @@ -6,9 +6,9 @@ name: Check for new upstream releases on: # Allow to manually trigger the workflow workflow_dispatch: - # Run it every day at 6:00 UTC + # Run it every day at 0:00, 12:00 and 18:00 UTC schedule: - - cron: '0 6 * * *' + - cron: '0 0,12,18 * * *' jobs: updater: runs-on: ubuntu-latest