Files
hadolint-action/problem-matcher.json
T
Moritz Röhrich df662ab7a1 Problem Matcher: Capture code and severity
Make the problem matcher capture Hadolint's output more acurately.

related-to: hadolint/hadolint-action#78

Signed-off-by: Moritz Röhrich <moritz@ildefons.de>
2026-08-10 18:05:28 +02:00

18 lines
324 B
JSON

{
"problemMatcher": [
{
"owner": "hadolint/hadolint-action",
"pattern": [
{
"regexp": "^(.+):(\\d+)\\s(.+)\\s(error|warning|info|style):\\s(.+)$",
"file": 1,
"line": 2,
"code": 3,
"severity": 4,
"message": 5
}
]
}
]
}