We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff7e4b2 commit 366d18aCopy full SHA for 366d18a
.github/workflows/update-recent-works.yml
@@ -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
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