-
Notifications
You must be signed in to change notification settings - Fork 0
35 lines (29 loc) · 1.01 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Monthly Spider
on:
schedule:
# This cron job runs at 00:00 on the first day of every month
- cron: '0 0 1 * *'
workflow_dispatch:
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