Latest blog post workflow #35907
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 blog post workflow | |
on: | |
schedule: | |
# Runs every hour | |
- cron: "0 * * * *" | |
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: | |
feed_list: "https://dev.to/feed/injoon5, https://injoon5.github.io/feed.xml" | |
commit_message: ":arrow_up: 새 블로그 글 추가!" | |
commit_user_name: OIJ BOT | |
commit_user_email: injoon5@naver.com | |
commit_author: OIJ BOT <injoon5@naver.com> |