Skip to content

[Gold V] Title: 퇴사 2, Time: 672 ms, Memory: 315944 KB -BaekjoonHub #91

[Gold V] Title: 퇴사 2, Time: 672 ms, Memory: 315944 KB -BaekjoonHub

[Gold V] Title: 퇴사 2, Time: 672 ms, Memory: 315944 KB -BaekjoonHub #91

Workflow file for this run

name: Update README
on:
push:
branches:
- main
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 0 # 전체 커밋 로그 가져오기
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt || echo "No requirements file"
- name: Run update script
run: |
python ./update_readme.py || echo "Script failed"
- name: Commit and push changes
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
git add README.md
git commit -m "Update README" || echo "Nothing to commit"
git push