Latest MikkiPastel blog post workflow #999
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: Latest MikkiPastel 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: | |
comment_tag_name: "BLOG" | |
feed_list: "https://www.mikkipastel.com/rss/" | |
commit_message: "Update mikkipastel.com blog posts" | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: gautamkrishnar/blog-post-workflow@master | |
with: | |
comment_tag_name: "MEDIUM" | |
feed_list: "https://medium.com/feed/@minseobingsu" | |
commit_message: "Update medium.com blog posts" | |
gh_token: ${{ secrets.GITHUB_TOKEN }} |