From ca5b882f919958bb93469c43a3b6a5385999a0f5 Mon Sep 17 00:00:00 2001 From: telegine Date: Fri, 26 Jul 2024 12:01:48 +0500 Subject: [PATCH] feat: add cron to run update-og-images workflow --- .github/workflows/update-og-images.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-og-images.yml b/.github/workflows/update-og-images.yml index 6a0419d33875..1ec645687562 100644 --- a/.github/workflows/update-og-images.yml +++ b/.github/workflows/update-og-images.yml @@ -1,6 +1,10 @@ name: Update og images -on: workflow_dispatch + on: + schedule: + # Runs at 00:05 AM UTC every day + - cron: '5 0 * * *' + workflow_dispatch: jobs: update_og_images: runs-on: ubuntu-latest