From 41ce15d785c7db0b58560c2343b02feb43fa2f1e Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Thu, 1 Apr 2021 11:48:28 -0500 Subject: [PATCH] fix(ignore_sha): change default from false to 'false' This was noted by @Gisleburt here https://github.com/styfle/cancel-workflow-action/pull/59#discussion_r590222743 According to the spec the parameter should be a string, but if you use false without quotes in YAML it is taken as a boolean so the types are not quite correct --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f3c505bd..faf5a33b 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 }}'