diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index a3ff860..04e758c 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -9,6 +9,9 @@ on: branches: [ master ] pull_request: branches: [ master ] + schedule: + # * is a special character in YAML so you have to quote this string + - cron: '15 6 * * *' # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -55,3 +58,12 @@ jobs: git status git diff --stat git diff data/SR.csv + + # Git commit + push, see https://github.com/github-actions-x/commit + - name: push + uses: github-actions-x/commit@v2.6 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + push-branch: 'master' + commit-message: 'Data update' + name: GURS RPE update bot