Update JSON #28093
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: Update JSON | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.GIT_ACCESS_TOKEN }} | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: ${{ runner.os }}-pip-${{ hashFiles('scraper/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Setup Python | |
run: | | |
python3 -m venv .venv | |
source .venv/bin/activate | |
pip install -r scraper/requirements.txt | |
- name: Create local changes | |
run: | | |
source .venv/bin/activate | |
python scraper/src/meta.py | |
python scraper/src/pmu.py | |
python scraper/src/donors.py | |
python scraper/src/hospitals.py | |
python scraper/src/associate.py | |
python scraper/src/status.py | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "github-actions[bot]" | |
git add . | |
git diff --staged --quiet || git commit -am "🌍 Update JSON - $(date -d '+5 hours +30 minutes' +'%d %b %Y | %I:%M %p')" | |
git push |