Skip to content

PROGRAMMERS UPLOAD

PROGRAMMERS UPLOAD #37

Workflow file for this run

name: Auto Update README
on:
push:
paths:
- "**"
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests beautifulsoup4 certifi
- name: Update all READMEs
run: python .github/scripts/update_readme.py
- name: Commit changes
run: |
if git diff --quiet; then
echo "No changes"
else
git config user.name "github-actions"
git config user.email "github-actions@github.com"
git add **/README.md
git commit -m "자동 업데이트: 전체 풀이 상태 반영"
git push
fi