Skip to content

Commit 9f1033d

Browse files
committed
5.3.4
1 parent 1f766b8 commit 9f1033d

File tree

6 files changed

+25
-11
lines changed

6 files changed

+25
-11
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The more advanced settings are documented in the [wiki](https://github.com/danie
1414
dotnet-quality: 'ga'
1515

1616
- name: ReportGenerator
17-
uses: danielpalme/[email protected].0
17+
uses: danielpalme/[email protected].4
1818
with:
1919
reports: 'coverage.xml' # REQUIRED # The coverage reports that should be parsed (separated by semicolon). Globbing is supported.
2020
targetdir: 'coveragereport' # REQUIRED # The directory where the generated report should be saved.
@@ -25,6 +25,8 @@ The more advanced settings are documented in the [wiki](https://github.com/danie
2525
assemblyfilters: '+*' # Optional list of assemblies that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.
2626
classfilters: '+*' # Optional list of classes that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.
2727
filefilters: '+*' # Optional list of files that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.
28+
riskhotspotassemblyfilters: '+*' # Optional list of assemblies that should be included or excluded in the risk hotspots. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.
29+
riskhotspotclassfilters: '+*' # Optional list of classes that should be included or excluded in the risk hotspots. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.
2830
verbosity: 'Info' # The verbosity level of the log messages. Values: Verbose, Info, Warning, Error, Off
2931
title: '' # Optional title.
3032
tag: '${{ github.run_number }}_${{ github.run_id }}' # Optional tag or build version.

action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ inputs:
4242
description: 'Optional list of files that should be included or excluded in the report. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.'
4343
required: false
4444
default: '+*'
45+
riskhotspotassemblyfilters:
46+
description: 'Optional list of assemblies that should be included or excluded in the risk hotspots. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.'
47+
required: false
48+
default: '+*'
49+
riskhotspotclassfilters:
50+
description: 'Optional list of classes that should be included or excluded in the risk hotspots. Exclusion filters take precedence over inclusion filters. Wildcards are allowed.'
51+
required: false
52+
default: '+*'
4553
verbosity:
4654
description: 'The verbosity level of the log messages. Values: Verbose, Info, Warning, Error, Off'
4755
required: false

dist/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
4242
const core = __importStar(__nccwpck_require__(2186));
4343
const exec = __importStar(__nccwpck_require__(1514));
4444
const fs = __importStar(__nccwpck_require__(7147));
45-
const VERSION = '5.3.0';
45+
const VERSION = '5.3.4';
4646
function run() {
4747
return __awaiter(this, void 0, void 0, function* () {
4848
try {
@@ -106,6 +106,8 @@ function run() {
106106
'-assemblyfilters:' + (core.getInput('assemblyfilters') || ''),
107107
'-classfilters:' + (core.getInput('classfilters') || ''),
108108
'-filefilters:' + (core.getInput('filefilters') || ''),
109+
'-riskhotspotassemblyfilters:' + (core.getInput('riskhotspotassemblyfilters') || ''),
110+
'-riskhotspotclassfilters:' + (core.getInput('riskhotspotclassfilters') || ''),
109111
'-verbosity:' + (core.getInput('verbosity') || ''),
110112
'-title:' + (core.getInput('title') || ''),
111113
'-tag:' + (core.getInput('tag') || ''),

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ReportGenerator",
3-
"version": "5.3.0",
3+
"version": "5.3.4",
44
"description": "",
55
"main": "lib/reportgenerator.js",
66
"scripts": {

src/reportgenerator.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as core from '@actions/core';
22
import * as exec from '@actions/exec';
33
import * as fs from 'fs';
44

5-
const VERSION = '5.3.0';
5+
const VERSION = '5.3.4';
66

77
async function run() {
88
try {
@@ -82,12 +82,14 @@ async function run() {
8282
'-assemblyfilters:' + (core.getInput('assemblyfilters') || ''),
8383
'-classfilters:' + (core.getInput('classfilters') || ''),
8484
'-filefilters:' + (core.getInput('filefilters') || ''),
85+
'-riskhotspotassemblyfilters:' + (core.getInput('riskhotspotassemblyfilters') || ''),
86+
'-riskhotspotclassfilters:' + (core.getInput('riskhotspotclassfilters') || ''),
8587
'-verbosity:' + (core.getInput('verbosity') || ''),
8688
'-title:' + (core.getInput('title') || ''),
8789
'-tag:' + (core.getInput('tag') || ''),
8890
'-license:' + (core.getInput('license') || '')
8991
];
90-
92+
9193
const customSettings = (core.getInput('customSettings') || '');
9294

9395
if (customSettings.length > 0) {

0 commit comments

Comments
 (0)