update cron to non-western centric generic default

This commit is contained in:
Chuanqi Sun 2021-04-11 15:42:36 -07:00
parent 84ce1c0eaa
commit 88564b15dd
2 changed files with 5 additions and 3 deletions

View file

@ -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:

View file

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