Skip to content

Solved: 평균 구하기 #3

Solved: 평균 구하기

Solved: 평균 구하기 #3

Workflow file for this run

name: Auto Update README
on:
push:
paths:
- '**.js'
- '!update-readme.js'
workflow_dispatch:
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Run update script
run: node update-readme.js
- name: Commit and push changes
run: |
git config user.name "github-actions"
git config user.email "[email protected]"
git add README.md
if git diff --cached --quiet; then
echo "No changes to commit."
else
git commit -m "🤖 Auto-update README with solved problem count"
git push
fi