name: 'Code Coverage Summary' author: 'Irongut ' description: 'A GitHub Action that reads Cobertura format code coverage files and outputs a text or markdown summary.' branding: icon: book-open color: purple inputs: filename: description: 'Code coverage file to analyse.' required: true badge: description: 'Include a Line Rate coverage badge in the output using shields.io - true / false (default).' required: false default: 'false' format: description: 'Output Format - markdown or text (default).' required: false default: 'text' indicators: description: 'Include health indicators in the output - true (default) / false.' required: false default: 'true' output: description: 'Output Type - console (default), file or both.' required: false default: 'console' thresholds: description: 'Badge and health indicator threshold percentages, default '50 75'.' required: false default: '50 75' runs: using: 'docker' image: 'docker://ghcr.io/irongut/codecoveragesummary:v1.0.5' args: - ${{ inputs.filename }} - '--badge' - ${{ inputs.badge }} - '--format' - ${{ inputs.format }} - '--indicators' - ${{ inputs.indicators }} - '--output' - ${{ inputs.output }} - '--thresholds' - ${{ inputs.thresholds }}