Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/runloop-blueprint-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"npm i -g @continuedev/cli@latest",
"sudo apt update",
"sudo apt install -y ripgrep",
"sudo apt install asciinema"
"sudo apt install asciinema",
"sudo apt install expect"
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Oct 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add -y to this apt install so the setup remains non-interactive; otherwise the command will prompt for confirmation and block automated runs.

Prompt for AI agents
Address the following comment on .github/workflows/runloop-blueprint-template.json at line 8:

<comment>Add -y to this apt install so the setup remains non-interactive; otherwise the command will prompt for confirmation and block automated runs.</comment>

<file context>
@@ -4,6 +4,7 @@
     &quot;sudo apt install -y ripgrep&quot;,
-    &quot;sudo apt install asciinema&quot;
+    &quot;sudo apt install asciinema&quot;,
+    &quot;sudo apt install expect&quot;
   ]
 }
</file context>
Suggested change
"sudo apt install expect"
"sudo apt install -y expect"
Fix with Cubic

]
}
Loading