File tree Expand file tree Collapse file tree
StyleCop.Analyzers.Status.Web Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ public class GitInformation
1616 {
1717 public string Sha { get ; set ; }
1818
19+ public string Message { get ; set ; }
20+
1921 public Signature Author { get ; set ; }
2022
2123 public Signature Committer { get ; set ; }
Original file line number Diff line number Diff line change 55
66@helper GetDiagnosticColorClass(StyleCopDiagnostic diagnostic)
77{
8- if (diagnostic .HasImplementation )
8+ if (diagnostic .HasImplementation && diagnostic . Status != " DisabledNoTests " )
99{
1010 < text > success < / text >
1111}
@@ -111,8 +111,12 @@ else
111111 <h3 >Commit information</h3 >
112112 <table >
113113 <tr >
114- <td >Current commit</td >
115- <td >@Model.Git.Sha </td >
114+ <td >Sha1</td >
115+ <td ><a href =" https://github.com/DotNetAnalyzers/StyleCopAnalyzers/tree/@Model.Git.Sha" >@Model.Git.Sha </a ></td >
116+ </tr >
117+ <tr >
118+ <td >Message</td >
119+ <td >@Model.Git.Message </td >
116120 </tr >
117121 <tr >
118122 <td >Author</td >
You can’t perform that action at this time.
0 commit comments