-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Update runloop-blueprint-template.json #8156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1 issue found across 1 file
Prompt for AI agents (all 1 issues)
Understand the root cause of the following 1 issues and fix them.
<file name=".github/workflows/runloop-blueprint-template.json">
<violation number="1" location=".github/workflows/runloop-blueprint-template.json:8">
Add -y to this apt install so the setup remains non-interactive; otherwise the command will prompt for confirmation and block automated runs.</violation>
</file>
React with 👍 or 👎 to teach cubic. Mention @cubic-dev-ai to give feedback, ask questions, or re-run the review.
| "sudo apt install -y ripgrep", | ||
| "sudo apt install asciinema" | ||
| "sudo apt install asciinema", | ||
| "sudo apt install expect" |
There was a problem hiding this comment.
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 @@
"sudo apt install -y ripgrep",
- "sudo apt install asciinema"
+ "sudo apt install asciinema",
+ "sudo apt install expect"
]
}
</file context>
| "sudo apt install expect" | |
| "sudo apt install -y expect" |
|
🎉 This PR is included in version 1.24.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.28.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
|
🎉 This PR is included in version 1.2.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
[ What changed? Feel free to be brief. ]
AI Code Review
@continue-reviewChecklist
Screen recording or screenshot
[ When applicable, please include a short screen recording or screenshot - this makes it much easier for us as contributors to review and understand your changes. See this PR as a good example. ]
Tests
[ What tests were added or updated to ensure the changes work as expected? ]
Summary by cubic
Add expect to the runloop blueprint setup to enable scripted interactions with interactive CLI prompts (works with asciinema). This prevents failures in workflows that need to respond to TTY prompts during tests or recordings.