forked from BasedHardware/omi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjit_trigger_condition_matrix.json
More file actions
58 lines (58 loc) · 1.32 KB
/
Copy pathjit_trigger_condition_matrix.json
File metadata and controls
58 lines (58 loc) · 1.32 KB
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
{
"schema_version": 1,
"description": "Model-facing standing-trigger payloads shared with the backend compiler.",
"valid_payloads": [
{
"description": "Notify me about incident discussions.",
"condition": {
"keywords": ["incident"]
}
},
{
"description": "Notify me when Slack mentions the budget.",
"condition": {
"match_mode": "all",
"apps": ["Slack"],
"keywords": ["budget"]
}
},
{
"description": "Notify me during release review hours.",
"condition": {
"time": {
"start": "09:00",
"end": "17:00",
"timezone": "UTC"
}
}
},
{
"description": "Notify me about release review meetings.",
"condition": {
"calendar": {
"event_keywords": ["release review"]
}
}
},
{
"description": "Notify me when the release owner is mentioned.",
"condition": {
"entity_aliases": {
"release_owner": ["David", "Dave"]
}
}
},
{
"description": "Notify me when an incident phrase appears.",
"condition": {
"regex": ["\\bincident\\b"]
}
},
{
"description": "Notify me in the release channel.",
"condition": {
"windows": ["#release"]
}
}
]
}