diff options
| -rw-r--r-- | .github/workflows/blog-post-workflow.yml | 2 |
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 |
