Skip to content

Commit

Permalink
Added *.dib files to be included in line counts
Browse files Browse the repository at this point in the history
.dib files can be used in .NET interactive notebooks and are flat text/source files
  • Loading branch information
erichiller committed Mar 22, 2024
1 parent 0f335de commit c9b96c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PlotGitHubAction/ActionConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static ActionConfig CreateFromEnvironment( ) {
: "*-build.log",
LineCountFilePattern: System.Environment.GetEnvironmentVariable( "INPUT_LINE_COUNT_FILE_PATTERN" ) is { Length: > 0 } lineCountFilePattern
? lineCountFilePattern
: @"(?<!\.(verified|generated))\.(axaml|cs|ps1)$",
: @"(?<!\.(verified|generated))\.(axaml|cs|dib|ps1)$",
CoverageHistoryDir: System.Environment.GetEnvironmentVariable( "INPUT_COVERAGE_HISTORY_DIR" ) is { Length: > 0 } coverageHistoryDir
? coverageHistoryDir
: null,
Expand Down

0 comments on commit c9b96c1

Please sign in to comment.