Skip to content

Commit 574a04c

Browse files
Update gh-format.swift
1 parent 3708818 commit 574a04c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/gh-format.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let regex = #/(?<file>.+\.swift):(?<line>\d+):(?<column>\d+): (?<severity>.+): \
1313
while let line = readLine() {
1414
if let match = try? regex.firstMatch(in: line) {
1515
let (_, file, line, column, severity, title, message) = match.output
16-
print("::\(severity) file=\(file),line=\(line),col=\(column),title=\(title)::\(message)")
16+
print("::\(severity) file=\(file),line=\(line),col=\(column),title=\(title)::[\(title)] \(message)")
1717
} else {
1818
print(line)
1919
}

0 commit comments

Comments
 (0)