General blog workflow #907
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: General 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 general blog posts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
comment_tag_name: "GENERAL" | |
commit_message: "Updated readme with the latest general blog articles" | |
feed_list: "https://www.vshn.ch/feed/" | |
max_post_count: 8 | |
readme_path: profile/README.md |