-
Notifications
You must be signed in to change notification settings - Fork 23
/
dbt_project.yml
26 lines (26 loc) · 1 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
config-version: 2
name: 'github'
version: '0.8.1'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
github:
+materialized: table
+schema: github
intermediate:
+materialized: ephemeral
vars:
github:
issue_assignee: "{{ ref('stg_github__issue_assignee') }}"
issue_closed_history: "{{ ref('stg_github__issue_closed_history') }}"
issue_comment: "{{ ref('stg_github__issue_comment') }}"
issue_label: "{{ ref('stg_github__issue_label') }}"
label: "{{ ref('stg_github__label') }}"
issue_merged: "{{ ref('stg_github__issue_merged') }}"
issue: "{{ ref('stg_github__issue') }}"
pull_request_review: "{{ ref('stg_github__pull_request_review') }}"
pull_request: "{{ ref('stg_github__pull_request') }}"
repository: "{{ ref('stg_github__repository') }}"
repo_team: "{{ ref('stg_github__repo_team') }}"
requested_reviewer_history: "{{ ref('stg_github__requested_reviewer_history') }}"
team: "{{ ref('stg_github__team') }}"
user: "{{ ref('stg_github__user') }}"