mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-07 19:47:25 +00:00
update wrapper submodule to 0.2.0, add recurse_submodules arg (#1780)
This commit is contained in:
parent
2488e996fa
commit
c545d7bd45
3 changed files with 6 additions and 1 deletions
|
|
@ -141,6 +141,7 @@ Codecov's Action supports inputs from the user. These inputs, along with their d
|
||||||
| `override_commit` | Commit SHA (with 40 chars) | Optional
|
| `override_commit` | Commit SHA (with 40 chars) | Optional
|
||||||
| `override_pr` | Specify the pull request number manually. Used to override pre-existing CI environment variables. | Optional
|
| `override_pr` | Specify the pull request number manually. Used to override pre-existing CI environment variables. | Optional
|
||||||
| `plugins` | Comma-separated list of plugins to run. Specify `noop` to turn off all plugins | Optional
|
| `plugins` | Comma-separated list of plugins to run. Specify `noop` to turn off all plugins | Optional
|
||||||
|
| `recurse_submodules` | Whether to enumerate files inside of submodules for path-fixing purposes. Off by default. | Optional
|
||||||
| `report_code` | The code of the report if using local upload. If unsure, leave unset. Read more here https://docs.codecov.com/docs/the-codecov-cli#how-to-use-local-upload | Optional
|
| `report_code` | The code of the report if using local upload. If unsure, leave unset. Read more here https://docs.codecov.com/docs/the-codecov-cli#how-to-use-local-upload | Optional
|
||||||
| `report_type` | The type of file to upload, coverage by default. Possible values are "test_results", "coverage". | Optional
|
| `report_type` | The type of file to upload, coverage by default. Possible values are "test_results", "coverage". | Optional
|
||||||
| `root_dir` | Root folder from which to consider paths on the network section. Defaults to current working directory. | Optional
|
| `root_dir` | Root folder from which to consider paths on the network section. Defaults to current working directory. | Optional
|
||||||
|
|
|
||||||
|
|
@ -112,6 +112,9 @@ inputs:
|
||||||
plugins:
|
plugins:
|
||||||
description: 'Comma-separated list of plugins to run. Specify `noop` to turn off all plugins'
|
description: 'Comma-separated list of plugins to run. Specify `noop` to turn off all plugins'
|
||||||
required: false
|
required: false
|
||||||
|
recurse_submodules:
|
||||||
|
description: 'Whether to enumerate files inside of submodules for path-fixing purposes. Off by default.'
|
||||||
|
default: 'false'
|
||||||
report_code:
|
report_code:
|
||||||
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
|
||||||
|
|
@ -300,6 +303,7 @@ runs:
|
||||||
CC_OS: ${{ inputs.os }}
|
CC_OS: ${{ inputs.os }}
|
||||||
CC_PARENT_SHA: ${{ inputs.commit_parent }}
|
CC_PARENT_SHA: ${{ inputs.commit_parent }}
|
||||||
CC_PLUGINS: ${{ inputs.plugins }}
|
CC_PLUGINS: ${{ inputs.plugins }}
|
||||||
|
CC_RECURSE_SUBMODULES: ${{ inputs.recurse_submodules }}
|
||||||
CC_REPORT_TYPE: ${{ inputs.report_type }}
|
CC_REPORT_TYPE: ${{ inputs.report_type }}
|
||||||
CC_RUN_CMD: ${{ inputs.run_command }}
|
CC_RUN_CMD: ${{ inputs.run_command }}
|
||||||
CC_SERVICE: ${{ inputs.git_service }}
|
CC_SERVICE: ${{ inputs.git_service }}
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit ad7c6465b6a6a1bc64d0be39ff1312b8ac76c6ea
|
Subproject commit 96f8531c88a811b53ea0b4ea7bbd691400d369c9
|
||||||
Loading…
Reference in a new issue