forked from fivetran/dbt_github_source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
24 lines (20 loc) · 911 Bytes
/
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
config-version: 2
name: 'github_source'
version: '0.0.1'
require-dbt-version: [">=0.17.0", "<0.18.0"]
models:
github_source:
materialized: ephemeral
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') }}"
issue_merged: "{{ source('github', 'issue_merged') }}"
issue: "{{ source('github', 'issue') }}"
pull_request_review: "{{ source('github', 'pull_request_review') }}"
pull_request: "{{ source('github', 'pull_request') }}"
repository: "{{ source('github', 'repository') }}"
requested_reviewer_history: "{{ source('github', 'requested_reviewer_history') }}"
user: "{{ source('github', 'user') }}"