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`.