summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2025-12-03 19:36:27 -0600
committerGitHub <[email protected]>2025-12-03 19:36:27 -0600
commita4ec26221e1e13dd3f6f9073d0abb9e25b84a302 (patch)
treeed16f63e051252bd2a6d894d608c0eaafd36797c
parent917ab7a0c13ce1c527219c5473f02b4545c4862d (diff)
downloadccleberg-a4ec26221e1e13dd3f6f9073d0abb9e25b84a302.tar.gz
ccleberg-a4ec26221e1e13dd3f6f9073d0abb9e25b84a302.tar.bz2
ccleberg-a4ec26221e1e13dd3f6f9073d0abb9e25b84a302.zip
Change cron schedule to run daily at midnight
-rw-r--r--.github/workflows/blog-post-workflow.yml2
1 files changed, 1 insertions, 1 deletions
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