Skip to content

fix(actions): update actions #215

fix(actions): update actions

fix(actions): update actions #215

Workflow file for this run

name: Update Readme
on: [workflow_dispatch, push, pull_request]
jobs:
update-readme:
name: Update Readme
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Readme Editor
run: |
php csv2md.php resources.csv README.md
git config user.name "Update README Action"
git config user.email github-actions@github.com
if [[ `git status --porcelain` ]]; then git add . && git commit -m "README.md updated by action" && git push; fi