Skip to content

Update chains in README.md #2911

Update chains in README.md

Update chains in README.md #2911

Workflow file for this run

name: Update chains in README.md
on:
push:
pull_request:
schedule:
- cron: "0 */12 * * *"
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: "12.x"
- name: Install Dependencies
run: npm install
- name: Run app.js
run: npm start
- name: Commit the new README.MD file
run: |-
git diff
git config --global user.email "[email protected]"
git config --global user.name "atmoner"
git diff --quiet || (git add README.md && git commit -m "Update the README.md file")
git push origin main