Skip to content

ImportTruthErviss

ImportTruthErviss #8

name: "ImportTruthErviss"
on:
workflow_dispatch:
# scheduled run every Friday at 19.00 (18.00 UTC)
schedule:
- cron: '00 18 * * 5'
jobs:
import_truth_job:
if: github.repository_owner == 'european-modelling-hubs'
runs-on: ubuntu-latest
steps:
# Checkout the python tools repo
# -------------------------------------------
- name: checkout python tools repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: 'european-modelling-hubs/hub-tools'
ref: 'main'
path: './tools/'
# Checkout the data repository
# -------------------------------------------
- name: checkout data repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: 'european-modelling-hubs/flu-forecast-hub'
ref: 'main'
path: './repo/'
# Run Pyton code
# -------------------------
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install pycountry isoweek
- name: Import Truth
id: import_truth
run: |
python ./repo/.github/scripts/import_truth.py
- name: Commit data repo changes
uses: EndBug/add-and-commit@v7
with:
cwd: './repo'
message: "Updating Truth Data repo ..."
default_author: github_actions
push: true
# Save changes to artifact for json db store
- name: Save changes to artifact
env:
imported_files: ${{ steps.import_truth.outputs.imported_files }}
run: |
echo "{ \"pr-changes\" : \"$imported_files\" }" > pr_changes.json
- name: Upload changes
uses: actions/upload-artifact@v2
with:
name: pr_changes
path: ./pr_changes.json