Bioinformatics Playlist #738
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: Bioinformatics Playlist | |
on: | |
schedule: | |
# Runs every hour, on the hour | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
update-readme-with-youtube: | |
# https://youtube.com/playlist?list=PLqQrRCH56DH-nTgLekThf60dkOguB-fRi | |
name: Update this repo's README with latest videos from Bioinformatics Play List | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
readme_path: "./Bioinformatics with Python/README.md" | |
comment_tag_name: "Bioinformatics" | |
max_post_count: 50 | |
feed_list: "https://www.youtube.com/feeds/videos.xml?playlist_id=PLqQrRCH56DH-nTgLekThf60dkOguB-fRi" | |
custom_tags: "channelId/yt:channelId/,videoId/yt:videoId/" | |
date_format: "mmm d, yyyy" | |
template: '<table><tr><td><a href="$url"><img width="140px" src="https://i.ytimg.com/vi/$videoId/mqdefault.jpg"></a></td>$newline<td><a href="$url">$title</a><br/>$date</td></tr></table>$newline' | |
committer_email: "avrab.yt@gmail.com" |