Skip to content

Commit 366d18a

Browse files
authored
Feat : 최근 커밋이력 자동화 및 README 정리 Github Action 기능 추가
1 parent ff7e4b2 commit 366d18a

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Update Recent Work Updates
2+
3+
on: push # 모든 브랜치에 대한 푸시 이벤트에 반응
4+
5+
jobs:
6+
update-readme:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
with:
11+
fetch-depth: 0 # 모든 히스토리를 가져옵니다
12+
- name: Set up Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: '3.x'
16+
- name: Install Dependencies
17+
run: |
18+
python -m pip install --upgrade pip
19+
pip install PyGithub
20+
- name: Update Recent Work Updates
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
run: python .github/scripts/update_recent_works.py

0 commit comments

Comments
 (0)