From 2ed2bb6a4c7a512c674d0c76d40e41292794c225 Mon Sep 17 00:00:00 2001 From: stranske Date: Thu, 8 Jan 2026 21:40:58 +0000 Subject: [PATCH] fix: restore force_mode default to true for auto-create This was reverted in #649 while debugging startup_failure but never restored. With force_mode=true, adding agent:codex label to an issue properly creates the bootstrap PR. Without this, the bridge defaults to invite mode and waits for human to open PR instead of auto-creating it. --- .github/workflows/reusable-agents-issue-bridge.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-agents-issue-bridge.yml b/.github/workflows/reusable-agents-issue-bridge.yml index 607a04b5a..94a9efc4a 100644 --- a/.github/workflows/reusable-agents-issue-bridge.yml +++ b/.github/workflows/reusable-agents-issue-bridge.yml @@ -40,7 +40,7 @@ on: description: "Force mode override (ignore issue event defaults)" required: false type: boolean - default: false + default: true post_agent_comment: description: "Auto-post '@ start' command (true/false)" required: false