Scrape #5975
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: Scrape | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
scrape: | |
name: Scrape | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pipenv' | |
- name: Install pipenv | |
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python | |
- id: pipenv-install | |
name: Install Python dependencies | |
run: pipenv sync --dev | |
- id: package-install | |
name: Install package | |
run: pipenv run python setup.py install | |
shell: bash | |
- id: get-all | |
name: Get all events | |
run: pipenv run nwswwa all > data/all.json | |
shell: bash | |
- id: get-hazards | |
name: Get hazards | |
run: pipenv run nwswwa hazards > data/hazards.json | |
shell: bash | |
- id: get-warnings | |
name: Get warnings | |
run: pipenv run nwswwa warnings > data/warnings.json | |
shell: bash | |
- name: Datestamp | |
run: date > data/timestamp.txt | |
shell: bash | |
- id: commit | |
name: Commit results | |
run: | | |
git config --global user.name "github-actions[bot]" | |
git config --global user.email "actions@github.com" | |
git config pull.rebase false | |
git add ./data | |
git commit -m "Scrape" && git push || true | |
shell: bash |