Skip to content

Run

Run #649

Workflow file for this run

name: Run
on:
workflow_dispatch:
schedule:
- cron: "30 0-8 * * *"
- cron: "*/5 9-16 * * *"
- cron: "30 17-23 * * *"
jobs:
run:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Checkout data
uses: actions/checkout@v4
with:
ref: data
path: data
- name: Run
run: python main.py
env:
SLACK_TRIGGER_URL: ${{ secrets.SLACK_TRIGGER_URL }}
- uses: stefanzweifel/git-auto-commit-action@v5
with:
repository: data