mirror of
https://github.com/hadolint/hadolint-action.git
synced 2026-09-03 14:19:23 +00:00
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>
18 lines
324 B
JSON
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
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|