From afdfd780e748ace8e62542210063e84cefb54b94 Mon Sep 17 00:00:00 2001 From: Benjamin Millhouse Date: Fri, 24 Mar 2023 08:57:51 -0400 Subject: [PATCH] Update action.yml Setting the `images` input as required is causing validation errors in my GitHub Actions extension. Per the description, it seems like the value should actually be set to `required: false` --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f4c1d8eae..d3a8a2de6 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ inputs: default: '.' images: description: "Applies to Web App Containers only: Specify the fully qualified container image(s) name. For example, 'myregistry.azurecr.io/nginx:latest' or 'python:3.7.2-alpine/'. For multi-container scenario multiple container image names can be provided (multi-line separated)" - required: true + required: false configuration-file: description: 'Applies to Web App Containers only: Path of the Docker-Compose file. Should be a fully qualified path or relative to the default working directory. Required for multi-container scenario' required: false