You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: action.yml
+10-6Lines changed: 10 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,10 @@ inputs:
30
30
description: "Fail the workflow if there are any findings with the level equal or greater to the specified. Possible values are: 'none' (don't fail on anything), 'debug', 'info', 'warning', 'error', 'fatal'."
31
31
required: false
32
32
default: 'warning'
33
+
mdgtPaths:
34
+
description: "Path(s) to the folder(s) where the MDG Technology descriptor XML files are located. Paths are separated by \";\". Only required when using Structural validation."
35
+
required: false
36
+
default: ''
33
37
34
38
runs:
35
39
using: "composite"
@@ -47,13 +51,13 @@ runs:
47
51
{
48
52
echo "IncQuery Validator for Enterprise Architect will be installed."
$msg = "#  IncQuery Validator for Enterprise Architect `r`n"
127
+
$msg = "#  IncQuery Validator for Enterprise Architect `r`n"
124
128
$msg += "Analysis were executed on **${{ inputs.model_file_path }}** with the **${{ inputs.analysis_suite }}** ruleset containing $numRules rules.`r`n`r`n"
125
129
126
130
$fatals = $result | where { $_.level.StartsWith("fatal error") }
0 commit comments