Skip to content

Commit

Permalink
Merge pull request #343 from DanRigby/github-suggestions-output
Browse files Browse the repository at this point in the history
Include suggestions in GitHub output
  • Loading branch information
laedit authored May 16, 2022
2 parents 3708096 + 1318f0a commit e02dfd4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/NVika/BuildServers/GitHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@ public override void WriteMessage(Issue issue)
break;

case IssueSeverity.Warning:
outputString.Append("::warning");
outputString.Append("::warning ");
break;

case IssueSeverity.Suggestion:
outputString.Append("::notice ");
break;
}

Expand Down

0 comments on commit e02dfd4

Please sign in to comment.