Skip to content

Commit 15680b7

Browse files
🩹 [Patch]: Update Action-Test workflow to set Prerelease input type as boolean for improved input handling
1 parent 1414203 commit 15680b7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎.github/workflows/Action-Test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
inputs:
88
Prerelease:
99
description: Run the action in prerelease mode
10+
type: boolean
1011
required: false
1112
default: false
1213
pull_request:
@@ -31,4 +32,4 @@ jobs:
3132
os: [ubuntu-latest, macos-latest, windows-latest]
3233
with:
3334
runs-on: ${{ matrix.os }}
34-
Prerelease: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.Prerelease || false }}
35+
Prerelease: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.Prerelease }}

0 commit comments

Comments
 (0)