Skip to content

Update_data_from_JohnsHopkins_to_repo #1115

Update_data_from_JohnsHopkins_to_repo

Update_data_from_JohnsHopkins_to_repo #1115

Workflow file for this run

name: Update_data_from_JohnsHopkins_to_repo
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
#push
# github runners are on GMT
schedule:
- cron: '20 13 * * *'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
Update_data_from_JohnsHopkins_to_repo:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
# Sets up python
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
# Runs a set of commands using the runners shell
- name: Install dependencies
run: |
date
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: querying Johns Hopkins repo to update our repo
run: |
cd src
python JH_US.py
- uses: stefanzweifel/[email protected]
with:
commit_message: "Added data from Johns Hopkins to repo"
# Optional glob pattern of files which should be added to the commit
file_pattern: output/*/*.csv
# Optional local file path to the repository
repository: .
# Optional commit user and author settings
commit_user_name: DLab GitHub Actions Bot
commit_user_email: [email protected]
commit_author: DLab github bot <[email protected]>