ImportTruthErviss #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
outputs: | |
changed_files: ${{ steps.import_truth.outputs.imported_files }} | |
steps: | |
# # Check if run is needed | |
# # ----------------------------- | |
# - name: Get previous workflow run | |
# id: get_previous_run | |
# if: github.event.schedule != '00 18 * * 5' | |
# uses: actions/github-script@v6 | |
# with: | |
# script: | | |
# const response = await github.rest.actions.listWorkflowRuns({ | |
# owner: context.repo.owner, | |
# repo: context.repo.repo, | |
# workflow_id: 'import_truth.yml', | |
# per_page: 1, | |
# }); | |
# const lastRun = response.data.workflow_runs[0]; | |
# core.setOutput('conclusion', lastRun.conclusion || 'no_run'); | |
# - name: Cancel workflow if last run was successful (Only if not running on friday) | |
# if: ${{ github.event.schedule != '00 18 * * 5' && steps.get_previous_run.outputs.conclusion == 'success' }} | |
# run: | | |
# echo "Previous run was successful. No need to run the workflow today." | |
# exit 0 # Stop workflow run | |
# 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/RespiCast-Covid19' | |
ref: 'main' | |
path: './repo/' | |
# Run Pyton code | |
# ------------------------- | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- run: pip install pandas pycountry isoweek | |
- name: Import Truth | |
id: import_truth | |
run: | | |
python ./tools/code/import_truth_Covid19.py --hub_path ./repo | |
- 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 | |
call-persisting-wf: | |
needs: import_truth_job | |
uses: european-modelling-hubs/RespiCast-Covid19/.github/workflows/persist_changes.yml@main | |
with: | |
changes-list: ${{ needs.import_truth_job.outputs.changed_files }} | |
secrets: | |
envPAT: ${{ secrets.GITHUB_TOKEN }} |