-
Notifications
You must be signed in to change notification settings - Fork 19
feat: allow piping multiline secrets #34
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
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
secretspec | aa5c502 | Commit Preview URL Branch Preview URL |
Aug 25 2025, 03:50 PM |
|
Claude finished @sandydoo's task —— View job PR Review: Allow Piping Multiline SecretsTodo List:
Changes OverviewThis PR contains 2 commits that enhance stdin handling for setting secrets:
The core change is in Code Review✅ Code Quality & Best Practices
✅ Bug Fixes & Correctness
✅ Performance Considerations
✅ Security Assessment
|
1fee00f to
d94eba5
Compare
|
Claude finished @sandydoo's task —— View job PR Review: Allow Piping Multiline SecretsTodo List:
Changes OverviewThis PR contains 2 commits that enhance stdin handling for setting secrets:
The core change is in Code Review✅ Code Quality & Best Practices
✅ Bug Fixes & Correctness
✅ Performance Considerations
✅ Security Assessment
|
d94eba5 to
aa5c502
Compare
|
Claude finished @sandydoo's task —— View job PR Review: Allow Piping Multiline SecretsTodo List:
Changes OverviewThis PR contains 2 commits that enhance stdin handling for setting secrets:
The core change is in // Old approach (single line only)
io::stdin().read_line(&mut buffer)?;
// New approach (supports multiline)
io::stdin().read_to_string(&mut buffer)?;Code Review✅ Code Quality & Best Practices
✅ Bug Fixes & Correctness
✅ Performance Considerations
✅ Security Assessment
|
Part of #32.
This is more of an escape hatch. I haven't figured out a good way of getting the interactive case to work with multi-line secrets.