mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
Fix description for report_type input (#1770)
The description stated "testing" was a valid value, but that leads to an error if you try to use it. The error message indicates that the value should be "test_results" instead.
This commit is contained in:
parent
4898080f15
commit
a5dc5a573e
1 changed files with 1 additions and 1 deletions
|
|
@ -116,7 +116,7 @@ inputs:
|
||||||
description: 'The code of the report if using local upload. If unsure, leave default. Read more here https://docs.codecov.com/docs/the-codecov-cli#how-to-use-local-upload'
|
description: 'The code of the report if using local upload. If unsure, leave default. Read more here https://docs.codecov.com/docs/the-codecov-cli#how-to-use-local-upload'
|
||||||
required: false
|
required: false
|
||||||
report_type:
|
report_type:
|
||||||
description: 'The type of file to upload, coverage by default. Possible values are "testing", "coverage".'
|
description: 'The type of file to upload, coverage by default. Possible values are "test_results", "coverage".'
|
||||||
required: false
|
required: false
|
||||||
root_dir:
|
root_dir:
|
||||||
description: 'Root folder from which to consider paths on the network section. Defaults to current working directory.'
|
description: 'Root folder from which to consider paths on the network section. Defaults to current working directory.'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue