Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test 0.5.0 #211

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 2 additions & 0 deletions .dbt-checkpoint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version: 1
disable-tracking: true
22 changes: 10 additions & 12 deletions .github/workflows/column_aware_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,28 @@ name: Column Aware CI

on:
workflow_dispatch:
# pull_request:
# branches:
# - main
# types:
# - opened
# - reopened
# - synchronize
# - ready_for_review
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- ready_for_review

jobs:
dbt-cloud-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run Column-Aware dbt Cloud CI
uses: dpguthrie/dbt-cloud-column-aware-ci@0.4.0
uses: dpguthrie/dbt-cloud-column-aware-ci@0.5.0
with:
dbt_cloud_service_token: ${{ secrets.DBT_CLOUD_SERVICE_TOKEN }}
dbt_cloud_token_value: ${{ secrets.DBT_CLOUD_API_KEY }}
dbt_cloud_token_name: 'gh-action-pre-commit'
dbt_cloud_account_id: ${{ secrets.DBT_CLOUD_ACCOUNT_ID }}
dbt_cloud_project_id: ${{ secrets.DBT_CLOUD_PROJECT_ID }}
dbt_cloud_project_name: 'Main'
dbt_cloud_job_id: 567183
dbt_cloud_environment_id: 218762
dialect: 'snowflake'
log_level: 'DEBUG'

2 changes: 1 addition & 1 deletion models/staging/tpch/stg_tpch_parts.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ renamed as (

p_partkey as part_key,
p_name as name,
p_mfgr || 's' as manufacturer,
p_mfgr as manufacturer,
p_brand as brand,
p_type as type,
p_size as size,
Expand Down
Loading