Skip to content

Hashnode Blog Posts #12952

Hashnode Blog Posts

Hashnode Blog Posts #12952

Workflow file for this run

name: Hashnode Blog Posts
on:
schedule:
# Runs every 30 minets of the day
- cron: ' 30 * * * *'
workflow_dispatch:
jobs:
update-readme-with-blog:
name: Update this repo's README with the latest blog posts
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gautamkrishnar/blog-post-workflow@master
with:
comment_tag_name: "BLOGPOSTS"
feed_list: "https://soroushfathi.hashnode.dev/rss.xml"
template: "$newline - $randomEmoji(💯,🔥,💫,🚀,🌮) [$title]($url)"
commit_message: "recent posts section updated"
gh_token: ${{ secrets.GITHUB_TOKEN }}