Skip to content

Commit f613a60

Browse files
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`
1 parent 5e45f8e commit f613a60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ inputs:
1818
default: '.'
1919
images:
2020
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)"
21-
required: true
21+
required: false
2222
configuration-file:
2323
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'
2424
required: false

0 commit comments

Comments
 (0)