-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenvironments.json
87 lines (87 loc) · 1.72 KB
/
environments.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"environments": [
{
"name": "production",
"configOverride": {},
"schedules": [
{
"name": "daily",
"cron": "30 14 * * *",
"tags": [
"daily"
]
},
{
"name": "hourly",
"cron": "59 */1 * * *"
},
{
"name": "new",
"cron": "31 17 * * mon,tue,wed,thu,fri,sat,sun",
"tags": [
"daily"
]
},
{
"name": "new_schedule",
"cron": "23 */1 * * *",
"options": {
"includeDependencies": false
},
"notify": [
{
"channel": "new_notification_channel",
"statuses": [
"SUCCESS",
"FAILURE"
]
}
]
}
],
"gitRef": "master"
},
{
"name": "staging",
"configOverride": {
"schemaSuffix": "staging"
},
"schedules": [
{
"name": "daily (all)",
"cron": "42 16 * * mon,tue,wed,thu,fri,sat,sun"
}
],
"gitRef": "master"
},
{
"name": "assertion_test",
"schedules": [
{
"name": "new_schedule2",
"cron": "52 */1 * * *",
"notify": [
{
"channel": "new_notification_channel",
"statuses": [
"SUCCESS",
"FAILURE"
]
}
]
}
],
"gitRef": "dataform_Assertion_test"
}
],
"notificationChannels": [
{
"name": "new_notification_channel",
"email": {
"to": [
]
}
}
]
}