ci: use actionlint and problem matchers (#4116)

This commit is contained in:
ReenigneArcher 2025-07-29 22:08:30 -04:00 committed by GitHub
commit 99cf9ac960
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
23 changed files with 215 additions and 120 deletions

17
.github/matchers/copr-ci.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"problemMatcher": [
{
"owner": "copr-ci-gcc",
"pattern": [
{
"regexp": "^/?(?:[^/]+/){5}([^:]+):(\\d+):(\\d+):\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
]
}
]
}