Files
steve/.github/workflows/blog-post-workflow.yml
T

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)"