Skip to content

Update faculty.csv

Update faculty.csv #5

Workflow file for this run

name: update data
permissions:
contents: write
on:
push:
branches: [ main ]
paths:
- 'faculty.csv'
schedule:
- cron: "0 0 1 * *"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
update_data:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install library
run: pip install git+https://github.com/cmccomb/map-of-research.git
- name: scrape the data
run: scrape_faculty_data
- name: commit and push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}