-
Notifications
You must be signed in to change notification settings - Fork 13
/
dbt_project.yml
26 lines (26 loc) · 1.03 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_source'
version: '0.8.0'
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
github_source:
+materialized: table
+schema: github_source
tmp:
+materialized: view
vars:
github_source:
issue_assignee: "{{ source('github', 'issue_assignee') }}"
issue_closed_history: "{{ source('github', 'issue_closed_history') }}"
issue_comment: "{{ source('github', 'issue_comment') }}"
issue_label: "{{ source('github', 'issue_label') }}"
label: "{{ source('github', 'label') }}"
issue_merged: "{{ source('github', 'issue_merged') }}"
issue: "{{ source('github', 'issue') }}"
pull_request_review: "{{ source('github', 'pull_request_review') }}"
pull_request: "{{ source('github', 'pull_request') }}"
repo_team: "{{ source('github', 'repo_team') }}"
repository: "{{ source('github', 'repository') }}"
requested_reviewer_history: "{{ source('github', 'requested_reviewer_history') }}"
team: "{{ source('github', 'team') }}"
user: "{{ source('github', 'user') }}"