[🤖] Run crawler #390
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: '[🤖] 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@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- 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' |