Latest blog post workflow #29
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: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 12 * * *' # every day at noon | |
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: | |
# Your RSS feed url | |
feed_list: "https://oso.sh/blog/feed" | |
# Maximum number of posts you want | |
max_post_count: 3 | |
# readme path | |
readme_path: "./profile/README.md" |