You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Change ONLY what was requested. No opportunistic refactors, no unrelated cleanup.
286
+
- NEVER modify anything under `.github/` (workflows, actions, CI config) — the workflow refuses to commit such changes. If the request requires a CI change, treat it as insufficient and say so in "question".
275
287
- Follow AGENTS.md strictly: use `fvm`; respect the layer/facade/failure/naming rules; NEVER log or expose secrets (mnemonic/seed/xpriv/PIN); no hardcoded user-facing strings (use `context.loc.*`); no raw colors.
276
288
- After editing, format your new/changed Dart files so the CI format gate can't fail on untracked files:
277
289
run `fvm dart format` on the files you touched, then `git add -A` for the changed source (do NOT add `.bullock/`).
@@ -319,7 +331,10 @@ jobs:
319
331
320
332
if [ "$sufficient" != "true" ]; then
321
333
body="🐂 Bullock needs more info before implementing:"
322
-
body="${body}"$'\n\n'"> ${question:-Please clarify what you'd like changed.}"
334
+
# NB: no apostrophes inside ${var:-word} — bash treats a single
335
+
# quote there as a quoting char even inside double quotes, which
336
+
# made this whole script unparseable (exit 2 at EOF).
337
+
body="${body}"$'\n\n'"> ${question:-Please clarify what you would like changed.}"
323
338
comment "$body"
324
339
echo "Insufficient info — asked for clarification, no PR opened."
class SETTINGS,TOR,PIN_CODE,LABELS,SECRETS,HW_WALLETS,BTC_PRICE,NETWORK,BIP85,FEES,WALLETS,EXCHANGE,APP_STARTUP,UTXO_MGMT,ADDRESS_MGMT,RECIPIENTS,FUNDING,BACKUPS,SWAPS,PAYJOIN,WITHDRAWAL,STATUS,SEND,RECEIVE,TRANSFER,TX_HISTORY,BG_TASKS,AUTOSWAPS,DCA,SELL,PAY,BUY,COINS,ANNOUNCEMENTS featureStyle
119
+
class SETTINGS,TOR,PIN_CODE,LABELS,SECRETS,HW_WALLETS,BTC_PRICE,NETWORK,BIP85,FEES,WALLETS,EXCHANGE,APP_STARTUP,UTXO_MGMT,ADDRESS_MGMT,RECIPIENTS,FUNDING,BACKUPS,SWAPS,PAYJOIN,WITHDRAWAL,STATUS,SEND,RECEIVE,TRANSFER,TX_HISTORY,BG_TASKS,AUTOSWAPS,DCA,SELL,PAY,BUY,COINS,ANNOUNCEMENTS,CONSOLIDATION featureStyle
0 commit comments