-
Notifications
You must be signed in to change notification settings - Fork 0
/
meltano.yml
53 lines (53 loc) · 1.23 KB
/
meltano.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
version: 1
default_environment: dev
project_id: 9f43b189-d108-4019-9f68-41979d6455ae
environments:
- name: dev
- name: staging
- name: prod
plugins:
extractors:
- name: tap-github
variant: matatika
pip_url: git+https://github.com/MeltanoLabs/tap-github.git
select:
- '*!.*'
- issues.*
- repositories.*
- pull_requests.*
- commits.*
loaders:
- name: target-postgres
variant: transferwise
pip_url: git+https://github.com/Matatika/[email protected]
annotations:
matatika:
properties_from_datastore: Warehouse
transforms:
- name: dbt-tap-github
variant: matatika
pip_url: https://github.com/Matatika/[email protected]
transformers:
- name: dbt
variant: dbt-labs
pip_url: "dbt-core~=1.3.0 dbt-postgres~=1.3.0 dbt-snowflake~=1.3.0\n"
files:
- name: analyze-github
variant: matatika
pip_url: git+https://github.com/Matatika/analyze-github
utilities:
- name: matatika
variant: matatika
pip_url: git+https://github.com/Matatika/[email protected]
jobs:
- name: github-job
tasks:
- tap-github
- target-postgres
- dbt:deps
- dbt:snapshot
- dbt:run
schedules:
- name: GitHub
interval: 0 0 * * * *
job: github-job