From 61aa29cbd2c2a468f54c7e7b3b237a903711607c Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 17 Jan 2024 14:05:02 -0800 Subject: [PATCH] Force tokens to be required --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index ad4180a..24691f2 100644 --- a/action.yml +++ b/action.yml @@ -3,8 +3,8 @@ description: 'GitHub Action that uploads coverage reports for your repository to author: 'Ibrahim Ali <@ibrahim0814> & Thomas Hu <@thomasrockhu> | Codecov' inputs: token: - description: 'Repository upload token - get it from codecov.io. Required only for private repositories' - required: false + description: 'Repository upload token - get it from codecov.io. Tokens should be added as a repository or organization secret (e.g. https://github.com/{owner}/{repo}/settings/secrets/actions).' + required: true file: description: 'Path to coverage file to upload' required: false