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
10 changes: 10 additions & 0 deletions .github/workflows/check-docs-current.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Check docs current

on:
pull_request:
types: [opened, synchronize, reopened]

jobs:
check-docs:
uses: fivetran/dbt_package_automations/.github/workflows/check-docs-current.yml@docs-generator-status-report
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
generate-docs:
if: github.event.label.name == 'docs:ready'
uses: fivetran/dbt_package_automations/.github/workflows/generate-docs.yml@main
uses: fivetran/dbt_package_automations/.github/workflows/generate-docs.yml@docs-generator-status-report
secrets: inherit
with:
schema_var_name: github_schema
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# dbt_github v1.4.1

[PR #82](https://github.com/fivetran/dbt_github/pull/82) includes the following updates:

## Feature Updates
- Adds DuckDB as a supported destination.


# dbt_github v1.4.0

[PR #80](https://github.com/fivetran/dbt_github/pull/80) includes the following updates:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ By default, this package materializes the following final tables:
To use this dbt package, you must have the following:

- At least one Fivetran GitHub connection syncing data into your destination.
- A **BigQuery**, **Snowflake**, **Redshift**, **PostgreSQL**, or **Databricks** destination.
- A **BigQuery**, **Snowflake**, **Redshift**, **PostgreSQL**, **Databricks**, or **DuckDB** destination.

## How do I use the dbt package?
You can either add this dbt package in the Fivetran dashboard or import it into your dbt project:
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config-version: 2
name: 'github'
version: '1.4.0'
version: '1.4.1'
require-dbt-version: [">=1.3.0", "<3.0.0"]
models:
github:
Expand Down
1 change: 1 addition & 0 deletions integration_tests/ci/test_scenarios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ schema_variable_name: "github_schema"

include_databricks_sql: false
include_sqlserver: false
include_duckdb: true
include_dbt_compile: true

test_scenarios:
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'github_integration_tests'
version: '1.4.0'
version: '1.4.1'
config-version: 2
profile: 'integration_tests'
vars:
Expand Down
3 changes: 2 additions & 1 deletion integration_tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ dbt-postgres>=1.3.0,<2.0.0
dbt-spark>=1.3.0,<2.0.0
dbt-spark[PyHive]>=1.3.0,<2.0.0
dbt-databricks>=1.3.0,<2.0.0
certifi==2025.1.31
dbt-duckdb>=1.3.0,<2.0.0
certifi==2025.1.31
Loading