Update this repo's README with the latest blog posts #3096
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: Update this repo's README with the latest blog posts | |
| on: | |
| schedule: | |
| # At 5 past the hour | |
| - cron: 5 9,18 * * 1-5 | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: JasonEtco/rss-to-readme@v1 | |
| with: | |
| feed-url: https://dev.to/feed/uselagoon | |
| readme-section: devtofeed | |
| branch: main | |
| path: profile/README.md | |
| max: 5 |