fetch-refugee-data #1733
This file contains hidden or 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: fetch-refugee-data | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '00 01,13 * * *' # runs at 6 am and 6 pm Pacific everyday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v2 # checkout repository content | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' # install python version | |
- name: install python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: execute py script # run get_ukraine_refugees_data.py to get the latest pop counts | |
run: | | |
python get_ukraine_refugees_data.py | |
- name: commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git commit -m "update data" -a --allow-empty | |
- name: push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |