Latest blog post workflow #594
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: | |
- cron: '0 1 * * *' #Runs at 01:00 UTC every day. | |
workflow_dispatch: # enable manual run | |
inputs: | |
git-ref: | |
description: Git Ref (Optional) | |
required: false | |
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: | |
max_post_count: "7" | |
readme_path: ./profile/readme.md | |
feed_list: "https://mrturkmen.com/index.xml" |