mirror of
https://github.com/osmoscraft/osmosfeed-template.git
synced 2026-03-11 14:44:24 +00:00
update cron to non-western centric generic default
This commit is contained in:
parent
84ce1c0eaa
commit
88564b15dd
2 changed files with 5 additions and 3 deletions
6
.github/workflows/update-feed.yaml
vendored
6
.github/workflows/update-feed.yaml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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`.
|
||||
|
|
|
|||
Loading…
Reference in a new issue