Run importers #1591
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: Run importers | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 2 * * *' | |
jobs: | |
scrape: | |
strategy: | |
matrix: | |
include: | |
- importer: aid_type | |
repo: IATI-Codelists-NonEmbedded | |
- importer: aid_type_category | |
repo: IATI-Codelists-NonEmbedded | |
- importer: collaboration_type | |
repo: IATI-Codelists-NonEmbedded | |
- importer: country | |
repo: IATI-Codelists-NonEmbedded | |
- importer: crs_channel_code | |
repo: IATI-Codelists-NonEmbedded | |
- importer: currency | |
repo: IATI-Codelists-NonEmbedded | |
- importer: file_format | |
repo: IATI-Codelists-NonEmbedded | |
- importer: finance_type | |
repo: IATI-Codelists-NonEmbedded | |
- importer: finance_type_category | |
repo: IATI-Codelists-NonEmbedded | |
- importer: flow_type | |
repo: IATI-Codelists-NonEmbedded | |
- importer: glide_number | |
repo: Unofficial-Codelists | |
- importer: language | |
repo: IATI-Codelists-NonEmbedded | |
- importer: organisation_registration_agency | |
repo: IATI-Codelists-NonEmbedded | |
- importer: region | |
repo: IATI-Codelists-NonEmbedded | |
- importer: region_m49 | |
repo: Unofficial-Codelists | |
- importer: sector | |
repo: IATI-Codelists-NonEmbedded | |
- importer: sector_category | |
repo: IATI-Codelists-NonEmbedded | |
- importer: reporting_organisation | |
repo: Unofficial-Codelists | |
- importer: sector_groups | |
repo: Unofficial-Codelists | |
- importer: unsdg_indicator | |
repo: Unofficial-Codelists | |
- importer: earmarking_modality | |
repo: Unofficial-Codelists | |
- importer: humanitarian_global_clusters | |
repo: Unofficial-Codelists | |
- importer: humanitarian_plan | |
repo: Unofficial-Codelists | |
- importer: reporting_organisation_group | |
repo: Unofficial-Codelists | |
- importer: sector_cofog | |
repo: Unofficial-Codelists | |
name: "Run importer: ${{ matrix.importer }}" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/checkout@v2 | |
name: Pull repo | |
with: | |
repository: codeforIATI/${{ matrix.repo }} | |
path: codelist_repo | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- uses: actions/cache@v2 | |
name: Cache dependencies | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run importer | |
run: | | |
python -m importers.${{ matrix.importer }} | |
- name: Create Pull Request | |
if: github.ref == 'refs/heads/main' | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
path: codelist_repo | |
token: ${{ secrets.TOKEN }} | |
commit-message: ${{ matrix.importer }} update | |
committer: CodeforIATI bot <[email protected]> | |
author: CodeforIATI bot <[email protected]> | |
branch: ${{ matrix.importer }}-update | |
delete-branch: true | |
title: ${{ matrix.importer }} update | |
body: Codelist update, sent from [this GitHub Action build](https://github.com/codeforIATI/codelist-updater/actions/runs/${{ github.run_id }}). | |
reviewers: markbrough,andylolz |