Skip to content

Commit a031ddb

Browse files
fixes
1 parent f48351a commit a031ddb

3 files changed

Lines changed: 6 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Jira Transformation dbt Package ([Docs](https://fivetran.github.io/dbt_jira/))
1+
# Jira dbt Package ([Docs](https://fivetran.github.io/dbt_jira/))
22

33
<p align="left">
44
<a alt="License"

dbt_project.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: 'jira'
22
version: '1.0.0'
33
config-version: 2
44
require-dbt-version: [">=1.3.0", "<2.0.0"]
5-
vars:
65

6+
vars:
77
jira:
88
issue: "{{ source('jira', 'issue') }}"
99
project: "{{ source('jira', 'project') }}"
@@ -23,6 +23,7 @@ vars:
2323
sprint: "{{ source('jira', 'sprint') }}"
2424
version: "{{ source('jira', 'version') }}"
2525
jira_issue_history_buffer: 1
26+
2627
models:
2728
jira:
2829
+materialized: table
@@ -31,5 +32,5 @@ models:
3132
+materialized: ephemeral
3233
+schema: int_jira
3334
staging:
34-
+schema: jira_source
3535
+materialized: view
36+
+schema: jira_source

integration_tests/dbt_project.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ profile: 'integration_tests'
55

66
vars:
77
# Comment out the below when generating docs
8-
# issue_field_history_columns: ['summary', 'components']
9-
jira_source:
8+
issue_field_history_columns: ['summary', 'components'] # @docs-ignore
9+
jira:
1010
jira_schema: jira_integrations_tests_42
1111
jira_comment_identifier: "comment"
1212
jira_component_identifier: "component"
@@ -34,9 +34,6 @@ models:
3434
jira:
3535
+schema: "{{ 'jira_integrations_tests_sqlw' if target.name == 'databricks-sql' else 'jira' }}"
3636
# +schema: "jira_{{ var('directed_schema','dev') }}"
37-
staging:
38-
+schema: jira_source
39-
+materialized: view
4037

4138
seeds:
4239
+docs:
@@ -94,5 +91,4 @@ dispatch:
9491

9592
flags:
9693
send_anonymous_usage_stats: False
97-
9894
use_colors: True

0 commit comments

Comments
 (0)