From 6a635bdbc7aef8c3af516714dadc4ca842aa3b22 Mon Sep 17 00:00:00 2001 From: Ramiro Berrelleza Date: Tue, 25 Jun 2024 21:29:04 -0700 Subject: [PATCH] Make the URL parameter a required value --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index ae85195..5bcac35 100644 --- a/action.yml +++ b/action.yml @@ -5,8 +5,8 @@ inputs: description: "Your okteto API token" required: true url: - description: "Okteto Enterprise URL. Use this to run your actions in your Okteto Enterprise instance (https://okteto.com/enterprise)." - required: false + description: "The URL of your Okteto instance (e.g. https://okteto.example.com)" + required: true namespace: description: "If present, the namespace you want to point to. If not specified, it will use the default namespace." required: false @@ -23,4 +23,4 @@ runs: - ${{ inputs.log-level }} branding: color: 'green' - icon: 'at-sign' \ No newline at end of file + icon: 'at-sign'