Skip to content

Update README title for self-study guidance #164

Update README title for self-study guidance

Update README title for self-study guidance #164

Workflow file for this run

name: Auto Update README
on:
push:
branches:
- main
- master
jobs:
update:
runs-on: ubuntu-latest
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Run script
run: python .github/scripts/update_readme.py
- name: Commit changes
run: |
git config --global user.name "github-actions"
git config --global user.email "actions@github.com"
git add .
git commit -m "🤖 Auto update README" || echo "No changes"
git push