Latest blog post workflow #195
This file contains hidden or 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: | |
| schedule: # Run workflow automatically | |
| - cron: '0 0 * * 0' # Runs once a week | |
| 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@v3 | |
| - name: Pull in blog posts | |
| uses: gautamkrishnar/blog-post-workflow@v1 | |
| with: | |
| max_post_count: "3" | |
| feed_list: "https://www.iankumu.com/blog/feed/" |