Skip to content

add riss

add riss #2

Workflow file for this run

name: Update README files
on:
schedule:
- cron: '30 */2 * * *'
push:
branches:
- main
# To run this workflow manually from GitHub GUI
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Get the latest READMEs
run: make readme-update
- name: Commit and push if there are changes
run: |-
git diff
git config --global user.email "[email protected]"
git config --global user.name "bot"
git diff --quiet || (git add -u && git commit -m "Update READMEs")
git push