From 60dc9d36486560875045ae237ce37232ba2f1177 Mon Sep 17 00:00:00 2001 From: Daniil Suvorov Date: Sat, 16 Jul 2022 16:34:37 +0300 Subject: [PATCH] fix: optional props not required (#515) --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index 45e757b..3e5d74d 100644 --- a/action.yml +++ b/action.yml @@ -15,25 +15,25 @@ inputs: github-token: description: "the token is used for fetching patch of a pull request to show only new issues" default: ${{ github.token }} - required: true + required: false only-new-issues: description: "if set to true and the action runs on a pull request - the action outputs only newly found issues" default: false - required: true + required: false skip-cache: description: | if set to true then the all caching functionality will be complete disabled, takes precedence over all other caching options. default: false - required: true + required: false skip-pkg-cache: description: "if set to true then the action doesn't cache or restore ~/go/pkg." default: false - required: true + required: false skip-build-cache: description: "if set to true then the action doesn't cache or restore ~/.cache/go-build." default: false - required: true + required: false runs: using: "node16" main: "dist/run/index.js"