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
+5-1
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,9 @@ inputs:
15
15
description: 'Optional comma separated list of coverage reports to send to Codacy'
16
16
required: false
17
17
default: ''
18
+
force-coverage-parser:
19
+
description: 'Optionally force using a specific coverage report parser'
20
+
required: false
18
21
runs:
19
22
using: "composite"
20
23
steps:
@@ -47,6 +50,7 @@ runs:
47
50
auth=''
48
51
if [ -n "${{ inputs.api-token }}" ]; then auth="--api-token ${{ inputs.api-token }} --organization-provider $ORGANIZATION_PROVIDER --username $OWNER_NAME --project-name $REPOSITORY_NAME"; fi
49
52
if [ -n "${{ inputs.project-token }}" ]; then auth="--project-token ${{ inputs.project-token }}"; fi
53
+
if [ -n "${{ inputs.force-coverage-parser }}" ]; then force_parser="--force-coverage-parser ${{ inputs.force-coverage-parser }}"; else force_parser=""; fi
0 commit comments