Skip to content

Commit

Permalink
making sha part of the schema id again
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-szdl committed Jun 27, 2024
1 parent 7c6be23 commit 7e31b0b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Get Schema ID
id: schema_id
run: echo "SCHEMA_ID=${{ github.event.pull_request.number }}" >> $GITHUB_ENV
run: echo "SCHEMA_ID=${{ github.event.pull_request.number }}__${{ github.sha }}" >> $GITHUB_ENV

- name: Run dbt debug
run: |
Expand Down
1 change: 0 additions & 1 deletion models/jaffle-shop/marts/fact_orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ with
, stg_orders.status
, payment_methods_agg.payment_methods
, payment_methods_agg.amount
, null as dummy
from stg_orders
left join payment_methods_agg
on stg_orders.id = payment_methods_agg.order_id
Expand Down

0 comments on commit 7e31b0b

Please sign in to comment.