We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb2dd79 commit 809c812Copy full SHA for 809c812
1 file changed
.github/actions/semantic/action.yaml
@@ -4,7 +4,7 @@ inputs:
4
no-checkout:
5
description: "Skip the checkout step"
6
required: false
7
- default: false
+ default: 'false'
8
github-token:
9
description: "GitHub token for the semantic release action"
10
required: true
@@ -21,7 +21,7 @@ runs:
21
using: "composite"
22
steps:
23
- name: Checkout
24
- if: inputs.no-checkout == false
+ if: inputs.no-checkout == 'false'
25
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
26
27
# - name: Create Inside
0 commit comments