Skip to content

Commit 86ebb35

Browse files
committed
fix(workflow): correct indentation for ssh-debugging input in test-upgrade-legacy.yaml
- Fixed indentation for `ssh-debugging` input under `workflow_dispatch`. This change ensures proper YAML structure for the workflow configuration.
1 parent 72a204e commit 86ebb35

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test-upgrade-legacy.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,11 @@ on:
2424
- .fixtures.yml
2525
branches: [main]
2626
workflow_dispatch:
27-
ssh-debugging:
28-
description: Boolean; whether or not to pause for ssh debugging
29-
required: true
30-
default: 'false'
27+
inputs:
28+
ssh-debugging:
29+
description: Boolean; whether or not to pause for ssh debugging
30+
required: true
31+
default: 'false'
3132
jobs:
3233
test-install:
3334
name: PE ${{ matrix.version }} ${{ matrix.architecture }} on ${{ matrix.image }}

0 commit comments

Comments
 (0)