From 24f722d39fc9b669554967ff6e74c99138d24261 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Thu, 27 Nov 2025 00:52:18 +0000 Subject: workflow: Add defaults to inputs even with Workflow class workflows. Earlier, we were adding defaults only with CommandLineTool class workflows, and ignoring defaults in Workflow class workflows. --- e2e-tests/tools/command-line-tool-with-default-input.scm | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 e2e-tests/tools/command-line-tool-with-default-input.scm (limited to 'e2e-tests/tools/command-line-tool-with-default-input.scm') diff --git a/e2e-tests/tools/command-line-tool-with-default-input.scm b/e2e-tests/tools/command-line-tool-with-default-input.scm new file mode 100644 index 0000000..82801a4 --- /dev/null +++ b/e2e-tests/tools/command-line-tool-with-default-input.scm @@ -0,0 +1,4 @@ +(command #:inputs (message #:type string + #:default "Hello world!") + #:run "echo" message + #:outputs (output_message #:type stdout)) -- cgit 1.4.1