Skip to content

Commit 1064f6c

Browse files
authored
Set default values as strings per GH Action requirements (#204)
This also removes the output section which is not being used for anything.
1 parent c203f01 commit 1064f6c

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

action.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ inputs:
3838
allow-empty:
3939
description: "Don't fail when coverage report file is empty or contains no data"
4040
required: false
41-
default: false
41+
default: 'false'
4242
base-path:
4343
description: 'The root folder of the project that originally ran the tests'
4444
required: false
@@ -57,18 +57,15 @@ inputs:
5757
debug:
5858
description: 'Enable debug output'
5959
required: false
60-
default: false
60+
default: 'false'
6161
measure:
6262
description: 'Show execution time of parsing and reporting'
6363
required: false
64-
default: false
64+
default: 'false'
6565
fail-on-error:
6666
description: 'Whether to fail (exit code 1) on any issues while uploading the coverage'
6767
required: false
68-
default: true
69-
outputs:
70-
coveralls-api-result:
71-
description: 'Result status of Coveralls API post.'
68+
default: 'true'
7269
branding:
7370
color: 'green'
7471
icon: 'percent'

0 commit comments

Comments
 (0)