-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 990 Bytes
/
scrape.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
}