Sync Medium Articles #111
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: Sync Medium Articles | |
on: | |
schedule: | |
- cron: '0 * * * *' # Runs hourly | |
workflow_dispatch: # Manual trigger option | |
jobs: | |
update-articles: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Fetch Medium articles | |
uses: gautamkrishnar/blog-post-workflow@v1 | |
with: | |
feed_list: "https://medium.com/feed/@dmontg" | |
max_post_count: "7" # Adjust as needed |