Skip to content

update

update #4391

Workflow file for this run

name: update
on:
workflow_dispatch:
schedule:
- cron: '0 */6 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Use Node.js
uses: actions/setup-node@v5
- 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 '51898782+github-actions[bot]@users.noreply.github.com'
git add .
git commit -am "chore(readme): update profile readme"
git push