diff --git a/.github/workflows/downstream_ci.yml b/.github/workflows/downstream_ci.yml index 6bb7b95..3eb25c2 100644 --- a/.github/workflows/downstream_ci.yml +++ b/.github/workflows/downstream_ci.yml @@ -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 }} \ No newline at end of file + github_token: ${{ secrets.GITHUB_TOKEN }} + include_downstream: false + dbt_command: run \ No newline at end of file diff --git a/models/staging/segment/int_segment__link_clicked.sql b/models/staging/segment/int_segment__link_clicked.sql index 2ed67d3..bd2a6f5 100644 --- a/models/staging/segment/int_segment__link_clicked.sql +++ b/models/staging/segment/int_segment__link_clicked.sql @@ -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') }} ), diff --git a/models/staging/segment/int_segment__pages.sql b/models/staging/segment/int_segment__pages.sql index 078182d..72f7c2f 100644 --- a/models/staging/segment/int_segment__pages.sql +++ b/models/staging/segment/int_segment__pages.sql @@ -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%'