Skip to content

Latest blog post workflow #1

Latest blog post workflow

Latest blog post workflow #1

name: Latest blog post workflow
on:
schedule:
# Runs at 00:00 every Sunday (UTC time)
- cron: '0 0 * * 0'
# Allows you to run this workflow manually from the Actions tab for testing
workflow_dispatch:
jobs:
update-readme-with-blog:
name: Update this repo's README with latest blog posts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Pull in medium posts
uses: gautamkrishnar/blog-post-workflow@v1
with:
# Your Medium RSS Feed
feed_list: "https://medium.com/feed/@vishalgunjal"
max_post_count: 5
# Formatting: Bullet point + Title + Link
template: "$newline- 📝 [$title]($url)"
commit_message: "docs: update readme with latest medium posts"