-
Notifications
You must be signed in to change notification settings - Fork 0
29 lines (27 loc) · 910 Bytes
/
crawler.yml
File metadata and controls
29 lines (27 loc) · 910 Bytes
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
name: '[🤖] Run crawler'
on:
schedule:
- cron: '0 0 * * *' # Run at 00:00 UTC every day
workflow_dispatch: # Allow manual runs
jobs:
crawl:
name: '[🤖] Crawl'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.13.7'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: '[🤖] Crawl'
run: python main.py
- name: Commit & Push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
message: 'chore: new crawler results'