From fe77f1a335ae9bcf518a52167392292f1c63eb5b Mon Sep 17 00:00:00 2001 From: stranske Date: Wed, 7 Jan 2026 18:46:30 +0000 Subject: [PATCH] fix: use expression syntax for force_mode boolean GitHub Actions workflow_call requires boolean inputs to use expression syntax ${{ true }} rather than bare true when calling reusable workflows. This fixes the startup_failure occurring in all consumer repos after the previous template sync. --- .../consumer-repo/.github/workflows/agents-issue-intake.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/consumer-repo/.github/workflows/agents-issue-intake.yml b/templates/consumer-repo/.github/workflows/agents-issue-intake.yml index 5ba7554bb..5e7a3f69b 100644 --- a/templates/consumer-repo/.github/workflows/agents-issue-intake.yml +++ b/templates/consumer-repo/.github/workflows/agents-issue-intake.yml @@ -165,8 +165,8 @@ jobs: agent: ${{ needs.check_labels.outputs.agent }} issue_number: ${{ needs.check_labels.outputs.issue_number }} mode: "create" - force_mode: true post_agent_comment: ${{ inputs.post_codex_comment && 'true' || 'false' }} + force_mode: ${{ true }} agent_pr_draft: ${{ inputs.bridge_draft_pr && 'true' || 'false' }} secrets: service_bot_pat: ${{ secrets.SERVICE_BOT_PAT }}