├── .github └── workflows │ └── blog-post-workflow.yml └── README.md /.github/workflows/blog-post-workflow.yml: -------------------------------------------------------------------------------- 1 | name: Latest blog post workflow 2 | on: 3 | schedule: # Run workflow automatically 4 | - cron: '0 * * * *' # Runs every hour, on the hour 5 | workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the Github Actions Workflow page directly 6 | 7 | jobs: 8 | update-readme-with-blog: 9 | name: Update this repo's README with latest blog posts 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout 13 | uses: actions/checkout@v2 14 | - name: Pull in dev.to posts 15 | uses: gautamkrishnar/blog-post-workflow@master 16 | with: 17 | feed_list: "https://medium.com/feed/@itsrakesh" 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | [](https://itsrakesh.co) 2 | 3 |