Merge pull request #106 from m-ildefons/gh-78

Problem Matcher: Capture code and severity
This commit is contained in:
Moritz Röhrich
2026-08-24 10:12:37 +02:00
committed by GitHub
+4 -2
View File
@@ -4,10 +4,12 @@
"owner": "hadolint/hadolint-action", "owner": "hadolint/hadolint-action",
"pattern": [ "pattern": [
{ {
"regexp": "(.*)\\:(\\d+)\\s(.*)", "regexp": "^(.+):(\\d+)\\s(.+)\\s(error|warning|info|style):\\s(.+)$",
"file": 1, "file": 1,
"line": 2, "line": 2,
"message": 3 "code": 3,
"severity": 4,
"message": 5
} }
] ]
} }