TradingAgents/.github/workflows/daily-discovery.yml

16 lines
349 B
YAML

# This file triggers a daily discovery workflow
name: Daily Discovery
on:
schedule:
- cron: '30 13 * * *' # Run daily at 13:30 UTC (includes weekends)
jobs:
discovery:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run discovery script
run: python your_script.py