Great work! I have tried this and it is amazing! Could you please help me or let me know how to create our own such workflow actions? I'm curious and I would like to have one of my own as you have one. Thank you!
Really nice! Just one question i configured it and now the blog posts points to danytulumidis.hashnode.dev but my blog is under danysdevcorner.hashnode.dev Do i missed something? Thank you very much in advance!
WoW! I just added it using this action! I did not know I could also do that! Thank you so much Varun! 💙
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.
It's awesome! Tyring it right now.😍
Jesse Wood
Software Engineer, WIP: PhD in AI
This is an amazing action Varun Sridharan. Very simple to set up, no hassle. Just plug and play. I look forward to trying to implement my own version of this GitHub Action from scratch.