From a3c6f75b8555f0ef87d76f88bc1dd2e30f9fd47e Mon Sep 17 00:00:00 2001 From: Nathaniel Young Date: Fri, 1 Nov 2024 15:38:06 -0700 Subject: [PATCH] set static_token as requierd to false and update description --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index e6de88e..f8cc2ef 100644 --- a/action.yml +++ b/action.yml @@ -1,12 +1,12 @@ name: 'Codecov ATS' -description: 'GitHub Action that returns selected test labels from Codecov☂️ to CI' +description: 'GitHub Action that returns selected test labels from Codecov☂️ to CI' inputs: token: - description: 'Repository upload token - get it from codecov.io. Required' + description: 'Repository upload token - get it from codecov.io. Required or set it with the environment variable CODECOV_TOKEN' required: false static_token: - description: 'Repository static token - get it from codecov.io. Required' - required: true + description: 'Repository static token - get it from codecov.io. Required or set it with the environment variable CODECOV_STATIC_TOKEN' + required: false enterprise_url: description: 'Change the upload host (Enterprise use only)' required: false