Latest blog post workflow #1884
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 blog post workflow | |
| on: | |
| schedule: | |
| # Runs every day | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| update-readme-with-blog: | |
| name: Update this repo's README with latest blog posts | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: gautamkrishnar/blog-post-workflow@master | |
| with: | |
| max_post_count: "3" | |
| feed_list: "https://dramsch.net/rss.xml" | |
| - uses: gautamkrishnar/blog-post-workflow@master | |
| with: | |
| comment_tag_name: "NEWSLETTER-LIST" | |
| commit_message: "Updated readme with the latest Newsletter " | |
| max_post_count: "3" | |
| feed_list: "https://buttondown.email/jesper/rss" | |
| - uses: gautamkrishnar/blog-post-workflow@master | |
| with: | |
| comment_tag_name: "YOUTUBE-LIST" | |
| commit_message: "Updated readme with the latest Youtube " | |
| max_post_count: "3" | |
| feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCn_c_QdG1qQ2nCBo2MLdktQ" | |
| - uses: jamesgeorge007/github-activity-readme@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |