Thanks to visit codestin.com
Credit goes to github.com

Skip to content

trigger-latest-blog-post-workflow #702

trigger-latest-blog-post-workflow

trigger-latest-blog-post-workflow #702

name: Latest blog post workflow
on:
schedule: # Run workflow automatically
- cron: "0 0 15 * *" # Run on the 15th of every month.
workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly
repository_dispatch:
types: [trigger-latest-blog-post-workflow]
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://blog.mphomphego.co.za/feed.xml"
max_post_count: 10