Skip to content

Progress Bar CI

Progress Bar CI #7931

Workflow file for this run

name: Progress Bar CI
on:
push:
branches: main
workflow_dispatch:
schedule:
- cron: '0 */3 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- name: Update README.md
run: node index.js > README.md
- name: Commit change & Push
run: |
git config user.name 'ageng'
git config user.email 'ageng.jr01@gmail.com'
git commit -am "plant some tree 🌳"
git push