From 17a7861118fef8fb5a330fdcee2573396ae03353 Mon Sep 17 00:00:00 2001 From: Shinnosuke Sawada <6warashi9@gmail.com> Date: Fri, 28 May 2021 08:02:15 +0900 Subject: [PATCH] fix(action.yml): change default input to string --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b9dc2c9a..db1ff02a 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,7 @@ inputs: ignore_sha: description: 'Optional - Allow canceling other workflows with the same SHA. Useful for the `pull_request.closed` event.' required: false - default: false + default: 'false' access_token: description: 'Your GitHub Access Token, defaults to: {{ github.token }}' default: '${{ github.token }}' @@ -19,6 +19,7 @@ inputs: all_but_latest: description: "Cancel all actions but the last one" required: false + default: 'false' runs: using: 'node12' main: 'dist/index.js'