Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rijieli authored Mar 23, 2024
1 parent 6259286 commit cb0f500
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Monthly Spider

on:
schedule:
# This cron job runs at 00:00 on the first day of every month
- cron: '0 0 1 * *'

jobs:
run_spider:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run spider
run: python ./spider.py # Adjust this line if spider.py is in a subdirectory

- name: Commit and push if there are changes
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A
git commit -m "Update results from spider" || exit 0 # This command will fail if there are no changes, hence the || exit 0
git push

0 comments on commit cb0f500

Please sign in to comment.