File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
csharp/autobuilder/Semmle.Autobuild.CSharp Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ namespace Semmle.Autobuild.CSharp
11
11
/// </summary>
12
12
public class MissingXamarinSdkRule : DiagnosticRule
13
13
{
14
+ private const string docsUrl = "https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-xamarin-applications" ;
15
+
14
16
public class Result : IDiagnosticsResult
15
17
{
16
18
/// <summary>
@@ -29,7 +31,7 @@ public DiagnosticMessage ToDiagnosticMessage<T>(Autobuilder<T> builder) where T
29
31
$ "missing-xamarin-{ this . SDKName . ToLower ( ) } -sdk",
30
32
$ "Missing Xamarin SDK for { this . SDKName } "
31
33
) ;
32
- diag . PlaintextMessage = "Please install this SDK before running CodeQL." ;
34
+ diag . MarkdownMessage = $ "Please [configure your workflow]( { docsUrl } ) for this SDK before running CodeQL.";
33
35
34
36
return diag ;
35
37
}
You can’t perform that action at this time.
0 commit comments