From a4ec26221e1e13dd3f6f9073d0abb9e25b84a302 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 3 Dec 2025 19:36:27 -0600 Subject: Change cron schedule to run daily at midnight --- .github/workflows/blog-post-workflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/blog-post-workflow.yml b/.github/workflows/blog-post-workflow.yml index 6ef4a47..8f9a3ec 100644 --- a/.github/workflows/blog-post-workflow.yml +++ b/.github/workflows/blog-post-workflow.yml @@ -1,7 +1,7 @@ name: Latest blog post workflow on: schedule: # Run workflow automatically - - cron: '0 * * * *' # Runs every hour, on the hour + - cron: '0 0 * * *' # Runs every hour, on the hour workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the GitHub Actions Workflow page directly permissions: contents: write # To write the generated contents to the readme -- cgit v1.2.3