Merge pull request #114 from prio-data/create_pgm_catalog_01 #32
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: Check for new model directories in views_pipeline/models | |
on: | |
push: | |
branches: | |
- create_pgm_catalog_01 # for testing on this branch | |
- production | |
- development | |
paths: | |
- models/*/configs/config_deployment.py | |
- models/*/configs/config_meta.py | |
- common_querysets/ | |
workflow_dispatch: # for triggering manually | |
jobs: | |
check-new-folder: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Generate catalog if models directory has changed | |
run: | | |
python documentation/catalogs/generate_model_catalog.py | |
if [ $? -ne 0 ]; then | |
echo "Generating catalogs failed." | |
exit 1 | |
fi | |
echo "Model catalog is updated." | |
git status | |
- name: Configure Git | |
run: | | |
git config --global user.name "GitHub Actions" | |
git config --global user.email "[email protected]" | |
- name: Commit and Push Changes | |
run: | | |
git add documentation/catalogs/cm_model_catalog.md documentation/catalogs/pgm_model_catalog.md | |
git commit -m "Automated changes by GitHub Actions" || echo "Nothing to commit" | |
git push https://${{ secrets.VIEWS_PIPELINE_ACCESS_TOKEN }}:[email protected]/prio-data/views_pipeline.git | |