Files
steve/.github/workflows/blog-post-workflow.yml
T
2022-02-24 16:54:28 -07:00

18 lines
524 B
YAML

name: Latest blog post workflow
on:
schedule:
# Runs every 12 hours
- cron: '0 */12 * * *'
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/"
max_post_count: 25