mirror of
https://github.com/snachodog/snachodog.git
synced 2026-06-04 01:09:35 -06:00
19 lines
682 B
YAML
19 lines
682 B
YAML
name: Latest blog post workflow
|
|
on:
|
|
schedule:
|
|
# Runs every 72 hours
|
|
- cron: '0 */72 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-readme-with-blog:
|
|
name: Update this repo's README with latest blog posts
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: gautamkrishnar/blog-post-workflow@master
|
|
with:
|
|
feed_list: "https://dogiakos.com/feed,https://visitchoteau.com/author/steve/feed/,https://choteauchamber.com/author/steve/feed/,https://montanalions.org/author/steve/feed/,https://tmdinosaurcenter.org/author/steve/feed/"
|
|
max_post_count: 25
|
|
user_agent: "Steve-GitHub-RSS/1.0 (blog-post-workflow)"
|