Skip to content

ATL City Council Scraper Workflow #803

ATL City Council Scraper Workflow

ATL City Council Scraper Workflow #803

Workflow file for this run

name: ATL City Council Scraper Workflow
on:
schedule:
- cron: '0 11 * * *' # 11am daily. Ref https://crontab.guru/examples.html
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Scrape the site
run: |
python3 -m app scrape > scraped/atl-citycouncil.json
- name: Commit changes
run: |
git config user.name "Automated scrape commit."
git config user.email "actions@users.noreply.github.com"
git add -A
timestamp=$(date -u)
git commit -m "Updated scraped data: ${timestamp}" || exit 0
git push