Hashnode Blog Posts #2917
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 6 hours of the day | |
- cron: '0 */6 * * *' | |
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://achintya-7.hashnode.dev/rss.xml" | |
template: "$newline - ### $randomEmoji(💯,🔥,💫,🚀,🌮) [$title]($url)" | |
commit_message: "recent posts section updated" | |
gh_token: ${{ secrets.GITHUB_TOKEN }} |