Skip to content

[Silver II] Title: 연결 요소의 개수, Time: 620 ms, Memory: 142228 KB -Baekjo… #55

[Silver II] Title: 연결 요소의 개수, Time: 620 ms, Memory: 142228 KB -Baekjo…

[Silver II] Title: 연결 요소의 개수, Time: 620 ms, Memory: 142228 KB -Baekjo… #55

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