LightRAG/.github/actionlint-matcher.json
Taddeus aeefc06905 Refactor build and packaging scripts, add Helm Makefile, and configure actionlint matcher
Removes legacy type schema generation Makefile and updates pre-commit hook to use new Makefile command.

Introduces a comprehensive Makefile to manage Helm chart packaging, publishing, testing, linting, and Docker image workflows, streamlining Apolo project automation and aligning with upstream LightRAG packaging conventions.

Adds GitHub Action problem matcher configuration for actionlint to improve workflow diagnostics.

Enhances maintainability and developer experience by centralizing build and deployment processes.

Relates to MLO-469
2025-11-03 14:58:11 +02:00

27 lines
533 B
JSON

{
"problemMatcher": [
{
"owner": "actionlint",
"pattern": [
{
"regexp": "^::(?:(?:warning)|(?:error)) file=(.+),line=(\\d+),col=(\\d+)::(.*)$",
"file": 1,
"line": 2,
"column": 3,
"message": 4
}
]
},
{
"owner": "actionlint",
"pattern": [
{
"regexp": "^::(?:(?:warning)|(?:error)) file=(.+),line=(\\d+)::(.*)$",
"file": 1,
"line": 2,
"message": 3
}
]
}
]
}