Scraping IEEE-RAS Conferences #63
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |