Latest blog post workflow #6205
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: | |
schedule: | |
# Runs at minute 0 past every 12th hour | |
# https://crontab.guru/every-12-hours | |
- cron: '0 */12 * * *' | |
workflow_dispatch: | |
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: | |
feed_list: "https://pitayan.com/atom.xml" | |
max_post_count: 10 |