Progress Bar CI #16145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Progress Bar CI | |
on: | |
push: | |
branches: master | |
workflow_dispatch: | |
schedule: | |
- cron: '5 * * * *' | |
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 'caliwyr' | |
git config user.email '60120589+caliwyr@users.noreply.github.com' | |
git commit -am "Sukses Dan Berhasil Di Jalakan 🚀" | |
git push |