Skip to content

Commit

Permalink
add fix (#410)
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-xyz authored Jan 13, 2025
1 parent e32f495 commit cac4ac0
Show file tree
Hide file tree
Showing 3 changed files with 694 additions and 4 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/dbt_run_traces_fix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: dbt_run_traces_fix
run-name: dbt_run_traces_fix

on:
workflow_dispatch:
inputs:
use_xl_env:
description: "Use the 2xl environment"
type: boolean
schedule:
# every 15 minutes (see https://crontab.guru)
- cron: "*/15 * * * *"

env:
DBT_PROFILES_DIR: ./

ACCOUNT: "${{ vars.ACCOUNT }}"
ROLE: "${{ vars.ROLE }}"
USER: "${{ vars.USER }}"
PASSWORD: "${{ secrets.PASSWORD }}"
REGION: "${{ vars.REGION }}"
DATABASE: "${{ vars.DATABASE }}"
WAREHOUSE: "${{ vars.WAREHOUSE }}"
SCHEMA: "${{ vars.SCHEMA }}"

concurrency:
group: ${{ github.workflow }}

jobs:
run_dbt_jobs:
runs-on: ubuntu-latest
environment:
name: ${{ github.event_name == 'workflow_dispatch' && inputs.use_xl_env && 'workflow_prod_2xl' || 'workflow_prod_backfill' }}

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 traces fix model
run: |
dbt run -m "polygon_models,tag:traces_fix"
Loading

0 comments on commit cac4ac0

Please sign in to comment.