Skip to content

css update

css update #16

Workflow file for this run

name: Update README
on:
push:
branches:
- master # this repo called master, because created before 2020
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
- name: Install dependencies
run: pip install pyyaml
- name: Update README.md
run: |
python scripts/update_readme.py
- name: Commit and push changes
run: |
git config --global user.name 'github-actions'
git config --global user.email '[email protected]'
git add README.md
git commit -m "Update README date and links"
git push
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}