Skip to content

Update update_readme.yml #4

Update update_readme.yml

Update update_readme.yml #4

Workflow file for this run

name: Update README with File Count
on:
push:
branches:
- main # Replace with your main branch name
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Update README
run: |
chmod +x update_readme.sh
bash update_readme.sh
- name: Commit and push changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "LeeHyungJoo"
git add README.md
git commit -m "Update file count in README [skip ci]"
git push