Skip to content

Commit eff1a64

Browse files
fix: add missing vars (#1638)
* fix: add missing vars * fix: add VERSION file
1 parent 4582d54 commit eff1a64

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5.0.0-beta

action.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ inputs:
77
binary:
88
description: 'The file location of a pre-downloaded version of the CLI. If specified, integrity checking will be bypassed.'
99
required: false
10+
codecov_yml_path:
11+
description: 'The location of the codecov.yml file. This is crrently ONLY used for automated test selection (https://docs.codecov.com/docs/getting-started-with-ats). Note that for all other cases, the Codecov yaml will need to be located as described here: https://docs.codecov.com/docs/codecov-yaml#can-i-name-the-file-codecovyml'
12+
required: false
1013
commit_parent:
1114
description: 'SHA (with 40 chars) of what should be the parent of this commit.'
1215
required: false
@@ -105,7 +108,7 @@ inputs:
105108
report_type:
106109
description: 'The type of file to upload, coverage by default. Possible values are "testing", "coverage".'
107110
required: false
108-
root_folder:
111+
root_dir:
109112
description: 'Root folder from which to consider paths on the network section. Defaults to current working directory.'
110113
required: false
111114
skip_validation:
@@ -220,3 +223,4 @@ runs:
220223
CC_TOKEN: $CODECOV_TOKEN
221224
CC_VERBOSE: ${{ inputs.verbose }}
222225
CC_VERSION: ${{ inputs.version }}
226+
CC_YML_PATH: ${{ inputs.codecov_yml_path }}

0 commit comments

Comments
 (0)