From 88564b15dd37087a53919feac96c9980011e7f78 Mon Sep 17 00:00:00 2001 From: Chuanqi Sun Date: Sun, 11 Apr 2021 15:42:36 -0700 Subject: [PATCH] update cron to non-western centric generic default --- .github/workflows/update-feed.yaml | 6 ++++-- README.md | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update-feed.yaml b/.github/workflows/update-feed.yaml index 8981fc2..83123a8 100644 --- a/.github/workflows/update-feed.yaml +++ b/.github/workflows/update-feed.yaml @@ -5,8 +5,10 @@ on: branches: - main schedule: - # just after Mid-night - - cron: "5 8 * * *" + # Adjust refresh schedule here. By default, it runs once per day. + # Syntax reference: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#schedule + # Recommended tool: https://crontab.guru/ + - cron: "0 0 * * *" jobs: build: diff --git a/README.md b/README.md index a3ea857..53b8f9f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ This is repository hosts the UI and content of an RSS feed reader. -## How does this work +## How does it work - The site is statically hosted by GitHub Pages. There is no server to fetch content on the fly. - The content is updated periodically by GitHub Actions, configured in `/.github/workflows/update-feed.yaml`.