-
Notifications
You must be signed in to change notification settings - Fork 199
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change images "required" value #302
Conversation
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`
@benjaminmillhouse could you please share your workflow yam and use case which you are trying to run? |
Sure - I am doing a zip-based deploy to an Azure App Service I am able to run the workflow still, but the GitHub Actions extension in VS Code is highlighting an error that I am missing the "images" property since it has been defined as required in the metadata |
+1 Reproduce by using GitHub Actions for VS Code with any workflow using webapps-deploy. |
This PR is idle because it has been open for 14 days with no activity. |
Fixes #307 |
Came from github/vscode-github-actions#58. This should be approved! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!!
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 torequired: false
This Pull Request sets the required status to false instead of true.