Skip to content

Update README

Update README #2310

Workflow file for this run

name: Update README
on:
push:
branches:
- main
schedule:
- cron: '*/30 0 * * *'
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Update Voitanos' blog posts
uses: gautamkrishnar/blog-post-workflow@master
with:
readme_path: ./profile/README.md
feed_list: "https://www.voitanos.io/index.xml"
comment_tag_name: "VOITANOSBLOG-POST-LIST"
commit_message: "🤖♻️ Update README with Voitanos' latest blog posts"
max_post_count: "5"
date_format: "mmm d, yyyy"
template: '$newline- $date - [$title]($url)'
- name: Update Voitanos' YouTube videos
uses: gautamkrishnar/blog-post-workflow@master
with:
readme_path: ./profile/README.md
feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCXeym1FGW2uTlNjYqTCVo0g"
comment_tag_name: "VOITANOSYOUTUBE-POST-LIST"
commit_message: "🤖♻️ Update README with Voitanos' latest videos on YouTube channel"
max_post_count: "5"
date_format: "mmm d, yyyy"
template: '$newline- $date - [$title]($url)'