mirror of
https://github.com/irongut/CodeCoverageSummary.git
synced 2026-05-19 08:20:13 +02:00
added indicators parameter to action definition #14
This commit is contained in:
+8
-2
@@ -9,19 +9,23 @@ inputs:
|
|||||||
description: 'Code coverage file to analyse.'
|
description: 'Code coverage file to analyse.'
|
||||||
required: true
|
required: true
|
||||||
badge:
|
badge:
|
||||||
description: 'Include a badge in the output - true / false (default).'
|
description: 'Include a Line Rate coverage badge in the output using shields.io - true / false (default).'
|
||||||
required: false
|
required: false
|
||||||
default: 'false'
|
default: 'false'
|
||||||
format:
|
format:
|
||||||
description: 'Output Format - markdown or text (default).'
|
description: 'Output Format - markdown or text (default).'
|
||||||
required: false
|
required: false
|
||||||
default: 'text'
|
default: 'text'
|
||||||
|
indicators:
|
||||||
|
description: 'Include health indicators in the output - true (default) / false.'
|
||||||
|
required: false
|
||||||
|
default: 'true'
|
||||||
output:
|
output:
|
||||||
description: 'Output Type - console (default), file or both.'
|
description: 'Output Type - console (default), file or both.'
|
||||||
required: false
|
required: false
|
||||||
default: 'console'
|
default: 'console'
|
||||||
thresholds:
|
thresholds:
|
||||||
description: 'Badge colour threshold percentages, default '50 75'.'
|
description: 'Badge and health indicator threshold percentages, default '50 75'.'
|
||||||
required: false
|
required: false
|
||||||
default: '50 75'
|
default: '50 75'
|
||||||
runs:
|
runs:
|
||||||
@@ -33,6 +37,8 @@ runs:
|
|||||||
- ${{ inputs.badge }}
|
- ${{ inputs.badge }}
|
||||||
- '--format'
|
- '--format'
|
||||||
- ${{ inputs.format }}
|
- ${{ inputs.format }}
|
||||||
|
- '--indicators'
|
||||||
|
- ${{ inputs.indicators }}
|
||||||
- '--output'
|
- '--output'
|
||||||
- ${{ inputs.output }}
|
- ${{ inputs.output }}
|
||||||
- '--thresholds'
|
- '--thresholds'
|
||||||
|
|||||||
Reference in New Issue
Block a user