Nice article.
Even I have setup Github profile to show the latest blog posts from @hashnode. I use a different action.
name: Latest blog post workflow
on:
schedule:
# Runs every hour
- cron: '0 * * * *'
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: "blog.bhanuteja.dev/rss.xml"
This works based on rss feed and you can add as many feeds as you want in this.