Skip to content

Scraping IEEE-RAS Conferences #63

Scraping IEEE-RAS Conferences

Scraping IEEE-RAS Conferences #63

Workflow file for this run

name: Scraping IEEE-RAS Conferences
on:
schedule:
- cron: '0 0 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
update-conferences:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests beautifulsoup4 glob2 DateTime
- name: Run IEEE_scraper
id: scraper
run: |
cd script
python IEEE_scraper.py
continue-on-error: true
- name: Create Pull Request
if: ${{ steps.scraper.outcome == 'success' }}
uses: peter-evans/create-pull-request@v5
with:
commit-message: Scraped IEEE-RAS Conferences
title: I found new Conferences from IEEE-RAS Website!
body: |
- Please check my modification before merging!
branch: scrape-ieee-ras-conferences
add-paths: www/data/conf*.json
assignees: 'torydebra'