From 764f8c84534bcf462eb2f40b6dfffef2b4cbbdfa Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Sat, 7 Sep 2019 18:33:47 +0530 Subject: [PATCH] Add required properties in action inputs --- action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/action.yml b/action.yml index 4f4efebe..7974d1d4 100644 --- a/action.yml +++ b/action.yml @@ -7,8 +7,10 @@ branding: inputs: php-version: description: 'PHP version to be installed.' + required: true extension-csv: description: '(Optional) Comma seperated list of PHP extensions to be installed.' + required: false runs: using: 'node12' main: 'lib/install.js'