Skip to content

Commit

Permalink
changes yamllinter msg to work w/ github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul committed Mar 5, 2021
1 parent 2c61231 commit 475ae26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.YAMLLinter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ private int Run()
{
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}");
}
}

Expand Down

0 comments on commit 475ae26

Please sign in to comment.