Skip to content

ci: added CI job for updating README.md #1

ci: added CI job for updating README.md

ci: added CI job for updating README.md #1

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
readme:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Generate README
run: python generate_readme.py
- name: Commit and push changes
run: |
git config --global user.name 'GitHub Actions'
git config --global user.email 'github-actions@example.com'
git add README.md
git commit -m "chore: automatically generated README.md"
git push origin master