Hashnode Blog Posts #12995
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |