Tech blog workflow #508
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: Tech blog workflow | |
on: | |
schedule: | |
# https://crontab.guru/#59_1_*_*_*/1 | |
- cron: '59 1 * * */1' | |
workflow_dispatch: | |
jobs: | |
update-readme-with-blog: | |
name: Update this repo's README with latest tech blog posts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
comment_tag_name: "TECH" | |
commit_message: "Updated readme with the latest tech blog articles" | |
feed_list: "https://www.vshn.ch/tech-en-rss.xml" | |
max_post_count: 4 | |
readme_path: profile/README.md |