forked from frenck/action-home-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmatcher.json
More file actions
35 lines (35 loc) · 727 Bytes
/
matcher.json
File metadata and controls
35 lines (35 loc) · 727 Bytes
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
{
"problemMatcher": [
{
"owner": "homeassistant-warnings",
"pattern": [
{
"regexp": "^(WARNING):(.*)$",
"severity": 1,
"message": 2
}
]
},
{
"owner": "homeassistant-invalid-config",
"pattern": [
{
"regexp": "(Invalid config for .*) \\(See (.*)(?::|, line )(\\d|\\?)\\)",
"file": 2,
"line": 3,
"message": 1
}
]
},
{
"owner": "homeassistant-platform-error-integration-not-found",
"pattern": [
{
"regexp": "Platform (error) .* - (Integration '.*' not found).$",
"severity": 1,
"message": 2
}
]
}
]
}