From a588073f62dc560ac4d4a0719c3a18131931b116 Mon Sep 17 00:00:00 2001 From: Moshe Azaria Date: Thu, 26 Jan 2023 13:43:59 +0200 Subject: [PATCH 1/2] update user inputs sentence and avoid how many and which, leave it to the table --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe6685897..d8e88ba92 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ steps: ## Arguments -Codecov's Action currently supports five inputs from the user: `token`, `file`, `flags`,`name`, and `fail_ci_if_error`. These inputs, along with their descriptions and usage contexts, are listed in the table below: +Codecov's Action supports inputs from the user. These inputs, along with their descriptions and usage contexts, are listed in the table below: | Input | Description | Usage | | :---: | :---: | :---: | From ddbf0f7ad725610be35d2af1472e7e0403e00ed8 Mon Sep 17 00:00:00 2001 From: Moshe Azaria Date: Thu, 26 Jan 2023 13:46:39 +0200 Subject: [PATCH 2/2] Missing negate usage of `files`, added example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d8e88ba92..c245c397f 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Codecov's Action supports inputs from the user. These inputs, along with their d | Input | Description | Usage | | :---: | :---: | :---: | | `token` | Used to authorize coverage report uploads | *Required for private repos* | -| `files` | Comma-separated paths to the coverage report(s) | Optional +| `files` | Comma-separated paths to the coverage report(s). Negated paths are supported by starting with `!` | Optional | `directory` | Directory to search for coverage reports. | Optional | `dry_run` | Don't upload files to Codecov | Optional | `flags` | Flag the upload to group coverage metrics (unittests, uitests, etc.). Multiple flags are separated by a comma (ui,chrome) | Optional @@ -114,7 +114,7 @@ jobs: directory: ./coverage/reports/ env_vars: OS,PYTHON fail_ci_if_error: true - files: ./coverage1.xml,./coverage2.xml + files: ./coverage1.xml,./coverage2.xml,!./cache flags: unittests name: codecov-umbrella path_to_write_report: ./coverage/codecov_report.txt