공부/Git
[github] Git Action 이용해서 티스토리 게시글 깃허브에 업로드하기
작은소행성
2022. 4. 14. 11:06
이전에 비슷하게 작업한 내용이 있다.
이전에 작업한 내용은 리드미를 계속적으로 다시 생성해서 업로드 하는 것이라면
이번에 정리할 내용은 블로그 내용만 업로드 해주는 것이다.
어떤 고수분이 만들어 둔 것을 사용했다.
name: Latest Blog Posts
on:
schedule:
# Runs every hour, on the hour
- cron: '0 * * * *'
workflow_dispatch:
jobs:
update-readme-with-blog:
name: Update this repo's README with latest blog posts
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Pull in dev.to posts
uses: gautamkrishnar/blog-post-workflow@master
with:
commit_message: "Updated readme"
feed_list: 'https://bsssss.tistory.com/rss'
max_post_count: '3
README 에서 원하는 부분에 아래 내용을 추가해 주어야 한다.
<!-- BLOG-POST-LIST:START -->
<!-- BLOG-POST-LIST:END -->
https://github.com/gautamkrishnar/blog-post-workflow
반응형