Skip to content

.github/workflows/DS_tracker.yml #1447

.github/workflows/DS_tracker.yml

.github/workflows/DS_tracker.yml #1447

Workflow file for this run

on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 12 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
echo $PWD
- uses: r-lib/actions/setup-r@v2
with:
install-r: false
- run: |
Rscript datastore_report/datastore_tracker.R
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "generated" --allow-empty
git push -f