From ee91a3c6acf4cbef584e535ce826966243849eef Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:42:16 -0600 Subject: [PATCH 1/2] Readme and persist docs update --- README.md | 17 ++--------------- integration_tests/dbt_project.yml | 3 +++ 2 files changed, 5 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 86ba392..0a88219 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,6 @@ # Github dbt Package -

- - - - - - - - - - -

- This dbt package transforms data from Fivetran's Github connector into analytics-ready tables. ## Resources @@ -29,6 +14,8 @@ This dbt package transforms data from Fivetran's Github connector into analytics - [dbt Docs](https://fivetran.github.io/dbt_github/#!/overview) - [DAG](https://fivetran.github.io/dbt_github/#!/overview?g_v=1) - [Changelog](https://github.com/fivetran/dbt_github/blob/main/CHANGELOG.md) +- dbt Core™ supported versions + - `>=1.3.0, <3.0.0` ## What does this dbt package do? This package enables you to analyze GitHub issues and pull requests, enhance core objects with commonly used metrics, and produce velocity metrics over time. It creates enriched models with metrics focused on issue and pull request tracking, team performance, and repository activity. diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 46082e0..86cea11 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -21,6 +21,9 @@ vars: github_user_identifier: "github_user_data" models: + +persist_docs: + relation: true + columns: true +schema: "github_{{ var('directed_schema','dev') }}" seeds: From 63af05323837e7e0df2a0238603b1c632f531faa Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:41:59 -0600 Subject: [PATCH 2/2] persist_docs conditional --- integration_tests/dbt_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 86cea11..82ce265 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -23,7 +23,7 @@ vars: models: +persist_docs: relation: true - columns: true + columns: "{{ false if target.type in ('databricks') else true }}" +schema: "github_{{ var('directed_schema','dev') }}" seeds: