you can have a look at the example: [bufgix (Faruk Oruç) (github.com)](https://github.com/bufgix) → [bufgix/bufgix: Bufgix's README (github.com)](https://github.com/bufgix/bufgix)
## Github Workflow to Update Readme Regularly
```yaml fold
name: README build
on:
push:
branches:
- master
schedule:
- cron: '0 */6 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
steps:
- name: 🍽️ Get working copy
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up node.js
uses: actions/setup-node@v2
with:
node-version: '12'
- name: Install deps
run: yarn install
- name: Update README
env:
RAINDROP_API_KEY: ${{ secrets.RAINDROP_API_KEY }}
run: yarn start
- name: Deploy
run: |
git config user.name "bufgix"
git config user.email "
[email protected]"
git add .
git commit -am "feat(auto generate): Updated content"
git push --all -f https://${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git
```