Skip to content

Commit

Permalink
fix(action.yml): change default input to string
Browse files Browse the repository at this point in the history
  • Loading branch information
Warashi committed May 27, 2021
1 parent 4b2921a commit 17a7861
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion action.yml
Expand Up @@ -11,14 +11,15 @@ 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 }}'
required: true
all_but_latest:
description: "Cancel all actions but the last one"
required: false
default: 'false'
runs:
using: 'node12'
main: 'dist/index.js'

0 comments on commit 17a7861

Please sign in to comment.