Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/downstream_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: dbt Cloud Downstream CI Action
uses: dpguthrie/dbt-cloud-downstream-ci-action@0.6.2
uses: dpguthrie/dbt-cloud-downstream-ci-action@0.6.4
with:
dbt_cloud_account_id: 43786
dbt_cloud_job_id: 106109
dbt_cloud_service_token: ${{ secrets.DBT_CLOUD_SERVICE_TOKEN }}
dbt_cloud_host: 'cloud.getdbt.com' # Optional
pull_request_id: ${{ github.event.number }}
git_sha: ${{ github.event.pull_request.head.sha }}
github_token: ${{ secrets.GITHUB_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
include_downstream: false
dbt_command: run
3 changes: 2 additions & 1 deletion models/staging/segment/int_segment__link_clicked.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ with
context_locale,
context_page_path,
context_page_referrer,
'{{ source }}' as src
'{{ source }}' as src2,
'hello world' as col

from {{ ref('stg_' ~ source ~ '__link_clicked') }}
),
Expand Down
3 changes: 2 additions & 1 deletion models/staging/segment/int_segment__pages.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ with
context_page_path,
context_page_url,
context_user_agent,
'{{ source }}' as src
'{{ source }}' as src,
'hello world' as col

from {{ ref('stg_' ~ source ~ '__pages') }}
where url not like 'http://127.0.0.1:8000%'
Expand Down