Latest YouTube Videos #1000
This file contains hidden or 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 YouTube Videos | |
on: | |
schedule: | |
# Runs every hour, on the hour | |
- cron: "0 12 * * *" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
update-readme-with-youtube: | |
name: Update this repo's README with latest videos from Mewllo ASMR Programming YouTube Channel | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCfRAWVJzoVuJ097W8MtnANA" | |
custom_tags: "channelId/yt:channelId/,videoId/yt:videoId/" | |
date_format: "d mmm 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: "mellow.asmr.programming@gmail.com" |