Skip to content

Scrape

Scrape #45

Workflow file for this run

name: Scrape
on:
workflow_dispatch:
schedule:
- cron: 0 0 * * *
permissions:
contents: write
jobs:
run-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.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip pipenv
pipenv install
- name: Run scrape script
run: |
pipenv run python scripts/scrape.py "${{ secrets.SCRAPED_URLS }}"
- name: Commit and push changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Add scrape results [skip ci]"
git push --force origin HEAD:${{ github.ref }}