Skip to content

Run the Python script #3

Run the Python script

Run the Python script #3

name: Periodically scrape repos
on:
push: # Temp
workflow_dispatch: # Manual run
schedule:
- cron: '0 0 * * 0'
jobs:
scrape:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install depenencies
run: pip install requests
- name: Run Python script for scraping
run: |
cd scripts
python scrape-for-contributors.py
- name: Temp
run: echo TODO