Skip to content

Vaccination OPSI update #24097

Vaccination OPSI update

Vaccination OPSI update #24097

name: Vaccination OPSI update
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
paths:
- '.github/workflows/vaccination_opsi.yml'
- 'transform/country_codes.py'
- 'update_vaccination_opsi.py'
- 'update_stats.py'
- 'requirements.txt'
pull_request:
branches: [ master ]
paths:
- '.github/workflows/vaccination_opsi.yml'
- 'transform/country_codes.py'
- 'update_vaccination_opsi.py'
- 'update_stats.py'
- 'requirements.txt'
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '45 */1 * * *' # periodic hourly update
workflow_dispatch:
# 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:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 15
# 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@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- name: Install python dependencies
run: pip install -r requirements.txt
- name: "Run vaccination update update_vaccination_opsi.py"
run: |
python update_vaccination_opsi.py
# Runs a set of commands using the runners shell
- name: Check git diff
run: |
ls -la csv/vaccination*opsi.*
git status
git diff
# Git commit + push, see https://github.com/github-actions-x/commit
- name: Publish NIJZ cepimose vaccination changes to git
if: github.ref == 'refs/heads/master'
uses: github-actions-x/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
push-branch: 'master'
commit-message: 'NIJZ OPSI vaccination data update 馃'
rebase: 'true' # pull and rebase before commit
files: csv/vaccination*opsi.* csv/cases* csv/stats*
name: Sledilnik data scrape bot 馃
email: [email protected]