Skip to content

✨ NEW: template, and bunch of solutions! #54

✨ NEW: template, and bunch of solutions!

✨ NEW: template, and bunch of solutions! #54

Workflow file for this run

name: Update README
on:
push:
branches:
- main
permissions:
contents: write
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout repository content
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Run README update script
run: python scripts/update_readme.py
- name: Commit and push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "[email protected]"
git add README.md
git commit -m "📝 DOCS: Automatic CI/CD Update of README."
git push