Merge pull request #448 from FlipsideCrypto/upd-schedule

Upd schedule
This commit is contained in:
Jack Forgash 2025-04-09 09:25:20 -06:00 committed by GitHub
commit 9374bf5ddb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 60 deletions

View File

@ -4,8 +4,8 @@ run-name: dbt_run_scheduled_core
on:
workflow_dispatch:
schedule:
# Runs every 90 minutes (see https://crontab.guru)
- cron: "0 * * * *"
# Runs on 25 and 55 minutes (see https://crontab.guru)
- cron: "25,55 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -1,53 +0,0 @@
name: dbt_run_scheduled_non_core
run-name: dbt_run_scheduled_non_core
on:
workflow_dispatch:
# schedule:
# Runs "At minute 15" (see https://crontab.guru)
# - cron: "15 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"
DBT_PROFILES_DIR: "${{ vars.DBT_PROFILES_DIR }}"
DBT_VERSION: "${{ vars.DBT_VERSION }}"
ACCOUNT: "${{ vars.ACCOUNT }}"
ROLE: "${{ vars.ROLE }}"
USER: "${{ vars.USER }}"
PASSWORD: "${{ secrets.PASSWORD }}"
REGION: "${{ vars.REGION }}"
DATABASE: "${{ vars.DATABASE }}"
WAREHOUSE: DBT_CLOUD
SCHEMA: "${{ vars.SCHEMA }}"
concurrency:
group: ${{ github.workflow }}
jobs:
dbt:
runs-on: ubuntu-latest
environment:
name: workflow_prod
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
- name: install dependencies
run: |
pip install -r requirements.txt
dbt deps
- name: Run DBT Jobs
run: |
dbt run -s tag:scheduled_non_core models/gold;
- name: Store logs
uses: actions/upload-artifact@v4
with:
name: dbt-logs
path: |
logs
target

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_blocks_realtime
on:
workflow_dispatch:
schedule:
# Runs twice an hour
- cron: "0,30 * * * *"
# Runs on 5 and 35 minutes (see https://crontab.guru)
- cron: "5,35 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,8 +4,8 @@ run-name: dbt_run_streamline_chunks_realtime
on:
workflow_dispatch:
schedule:
# Runs twice an hour
- cron: "5,35 * * * *"
# Runs on 10 and 40 minutes (see https://crontab.guru)
- cron: "10,40 * * * *"
env:
USE_VARS: "${{ vars.USE_VARS }}"

View File

@ -4,7 +4,7 @@ run-name: dbt_run_streamline_transactions_realtime
on:
workflow_dispatch:
schedule:
# Runs twice an hour
# Runs on 15 and 45 minutes (see https://crontab.guru)
- cron: "15,45 * * * *"
env: