Skip to content

Commit c1cef4f

Browse files
scotwellsclaude
andcommitted
Fix missing time unit suffix on wait_timeout default
The kind-bootstrap action's wait_timeout input defaulted to "300" (bare number) which newer kubectl rejects as an invalid duration. Changed to "300s" to match the Taskfile's own default. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2694057 commit c1cef4f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/actions/kind-bootstrap/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ inputs:
88
required: false
99
default: test-infra
1010
wait_timeout:
11-
description: "Seconds to wait for add-ons to become Ready"
11+
description: "Time to wait for add-ons to become Ready (e.g. 300s, 5m)"
1212
required: false
13-
default: "300"
13+
default: "300s"
1414
images:
1515
description: "Space-separated list of Docker images to load into kind (optional)"
1616
required: false

0 commit comments

Comments
 (0)