Weekly Scrape #94
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: Weekly Scrape | |
on: | |
schedule: | |
- cron: '0 0 * * 1,4' # run on Mon and Thurs | |
jobs: | |
scrape: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
pip install -r scripts/requirements.txt | |
- name: Run scraping script | |
env: | |
NEXTBUS_API_URL: ${{ secrets.NEXTBUS_API_URL }} | |
NEXTBUS_BASIC_AUTH: ${{ secrets.NEXTBUS_BASIC_AUTH }} | |
run: python scripts/scrape.py | |
- name: Commit and push any changes | |
run: | | |
git diff --exit-code || { | |
git config --global user.email "actions@github.com" | |
git config --global user.name "GitHub Actions" | |
git add . | |
git commit -m "gh-actions: update routes & stops" | |
git push | |
} |