Skip to content

Commit

Permalink
fix(ignore_sha): change default from false to 'false'
Browse files Browse the repository at this point in the history
This was noted by @Gisleburt here styfle#59 (comment)

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
  • Loading branch information
mikehardy committed Apr 1, 2021
1 parent f6f2733 commit 41ce15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -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 }}'
Expand Down

0 comments on commit 41ce15d

Please sign in to comment.