All YouTube English videos workflow #10009
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: All YouTube English videos workflow | |
on: | |
schedule: # Run workflow automatically | |
- cron: '0 * * * *' # Runs every hour, on the hour | |
workflow_dispatch: | |
permissions: | |
contents: write # To write the generated contents to the readme | |
jobs: | |
update-readme-with-youtube: | |
name: Update this repo's README with latest English videos from YouTube | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
max_post_count: 500 | |
readme_path: './videos/README.md' | |
comment_tag_name: "ENGLISH-YOUTUBE-VIDEOS" | |
feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCZF1uBmu-s0H46ZOvUE6-lg" |