mirror of
https://github.com/timmypidashev/timmypidashev.git
synced 2026-06-03 16:24:38 +00:00
27 lines
595 B
YAML
27 lines
595 B
YAML
name: Progress Bar CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '59 23 * * *'
|
|
|
|
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 'github-actions[bot]'
|
|
git config user.email '41898282+github-actions[bot]@users.noreply.github.com'
|
|
git commit -am "bot: updated README.md"
|
|
git push
|