Latest blog post workflow #22586
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: Latest blog post workflow | |
on: | |
workflow_dispatch: | |
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: | |
# Your RSS feed url | |
feed_list: "https://dev.to/feed/abhj" | |
# Maximum number of posts you want | |
max_post_count: 3 |