Actualiza_productos_de_MMA_otres #125
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: Actualiza_productos_de_MMA_otres | |
# 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: | |
# run every sunday at 15:00 chilito | |
- cron: '0 18 * * 0' | |
# push: | |
# branches: master | |
# paths: 'src/MMA.py' | |
# 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" | |
Actualiza_productos_del_MMA: | |
# 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 API to update our products | |
run: | | |
cd src | |
python MMA.py ${{ secrets.MMA_USER }} ${{ secrets.MMA_PASS }} OTRES | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: "Added data to repo from MMA API" | |
# 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: MinCiencia GitHub Actions Bot | |
commit_user_email: [email protected] | |
commit_author: minciencia github bot <[email protected]> | |
- name: update_API | |
run: | | |
curl -u "${{ secrets.DO_INT_USER }}:${{ secrets.DO_INT_PASS }}" \ | |
-H 'Accept: application/vnd.github.everest-preview+json' "https://api.github.com/repos/Data-Observatory/covid19-API/dispatches" \ | |
-d '{"event_type": "update_please_from_MMA"}' |