From 475ae26ca7a3e1835a42aa3ac9877cf1809b9978 Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 5 Mar 2021 15:59:55 +0100 Subject: [PATCH] changes yamllinter msg to work w/ github actions --- Content.YAMLLinter/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.YAMLLinter/Program.cs b/Content.YAMLLinter/Program.cs index 63c8d690da..56c3606b42 100644 --- a/Content.YAMLLinter/Program.cs +++ b/Content.YAMLLinter/Program.cs @@ -34,7 +34,7 @@ namespace Content.YAMLLinter { foreach (var errorNode in errorHashset) { - Console.WriteLine($"Error: {file}({errorNode.Node.Start.Line},{errorNode.Node.Start.Column}): {errorNode.ErrorReason}"); + Console.WriteLine($"::error file={file},line={errorNode.Node.Start.Line},col={errorNode.Node.Start.Column}::{file}({errorNode.Node.Start.Line},{errorNode.Node.Start.Column}) {errorNode.ErrorReason}"); } }