From 54a0566d1caf986dcc042eb71da69c0e69d26987 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 15 Jan 2025 14:32:42 -0300 Subject: [PATCH] feat: add disable-telem feature (#1739) --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 04dca4f72..0a40b5936 100644 --- a/action.yml +++ b/action.yml @@ -28,6 +28,10 @@ inputs: description: 'Disable setting safe directory. Set to true to disable.' required: false default: 'false' + disable_telem: + description: 'Disable sending telemetry data to Codecov. Set to true to disable.' + required: false + default: 'false' dry_run: description: "Don't upload files to Codecov" required: false @@ -254,6 +258,7 @@ runs: CC_DIR: ${{ inputs.directory }} CC_DISABLE_FILE_FIXES: ${{ inputs.disable_file_fixes }} CC_DISABLE_SEARCH: ${{ inputs.disable_search }} + CC_DISABLE_TELEM: ${{ inputs.disable_telem }} CC_DRY_RUN: ${{ inputs.dry_run }} CC_ENTERPRISE_URL: ${{ inputs.url }} CC_ENV: ${{ inputs.env_vars }}