이전에 비슷하게 작업한 내용이 있다.
이전에 작업한 내용은 리드미를 계속적으로 다시 생성해서 업로드 하는 것이라면
이번에 정리할 내용은 블로그 내용만 업로드 해주는 것이다.
어떤 고수분이 만들어 둔 것을 사용했다.
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
반응형
'공부 > Git' 카테고리의 다른 글
[git] fatal: will not add file alias 'filename' ('filename' already exists in index) (0) | 2022.11.15 |
---|---|
[Jenkins] jenkins github 연결하기 (0) | 2022.05.25 |
[Gitlab] gitlab cicd 사용해 docker image 배포 (0) | 2021.11.03 |
[Gitlab] gitlab runner 생성하기 (0) | 2021.11.02 |
git config 설정 (0) | 2021.09.14 |