mirror of
https://github.com/quatalog/quatalog.git
synced 2024-11-19 05:13:01 +00:00
Merge branch 'main' of https://github.com/3eef8a28f26fb2bcc514e6f1938929a1f931762/quatalog-scraping
This commit is contained in:
commit
35cb6c51a3
55
.github/workflows/scraper.yml
vendored
Normal file
55
.github/workflows/scraper.yml
vendored
Normal file
|
@ -0,0 +1,55 @@
|
|||
name: Update data
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 * * * *'
|
||||
|
||||
jobs:
|
||||
scrape-data:
|
||||
name: Scrape data
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout scraping repo
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
path: quatalog-scraping
|
||||
|
||||
- name: Clone QuACS data
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: quacs/quacs-data
|
||||
path: quacs-data
|
||||
|
||||
- name: Clone Quatalog data
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
repository: quatalog/quatalog-data
|
||||
path: quatalog-data
|
||||
token: ${{ secrets.PUSH_TOKEN }}
|
||||
|
||||
- name: Run scraper
|
||||
run: |
|
||||
# Usage: CourseOfferingsScraper <data_directory> <terms_offered_file> <prerequisites_file> <list_of_terms_file>
|
||||
quatalog-scraping/bin/CourseOfferingsScraper \
|
||||
quacs-data/semester_data \
|
||||
quatalog-data/terms_offered.json \
|
||||
quatalog-data/prerequisites.json \
|
||||
quatalog-data/terms_list.json
|
||||
|
||||
- name: Copy catalog.json from QuACS data
|
||||
run: |
|
||||
CURRENT_TERM="$(grep quatalog-data/terms_list.json -e 'current_term' | cut -f4 -d '"')"
|
||||
rsync -avz "quacs-data/semester_data/$CURRENT_TERM/catalog.json" quatalog-data/catalog.json
|
||||
|
||||
- name: Push new data
|
||||
working-directory: ./quatalog-data
|
||||
run: |
|
||||
git config --global user.name "Quatalog Updater"
|
||||
git config --global user.email "github_actions@quatalog.com"
|
||||
git add terms_offered.json prerequisites.json terms_list.json catalog.json
|
||||
git commit -m "$(date)" || exit 0
|
||||
git push
|
||||
|
||||
|
Binary file not shown.
Loading…
Reference in a new issue