Default production CI back to the host executor
The docker executor's `docker exec` dispatch isn't reliable enough to
keep on; `docs/plans/2026-05-07-ci-runtime-extraction.md` replaces it
with `quire-ci eval` running inside the run container. Until that
lands, fall back to host so trigger doesn't route through the broken
path.

Assisted-by: Claude Opus 4.7 (1M context) via Claude Code
change mnrzylpwmpwpppupzqswwlsxpnrnyptm
commit e289506afae37c552f534aabcf75fd2904cd4d9c
author Alpha Chen <alpha@kejadlen.dev>
date
parent kuyssqtt
diff --git a/src/ci/mod.rs b/src/ci/mod.rs
index d2a9044..8865a52 100644
--- a/src/ci/mod.rs
+++ b/src/ci/mod.rs
@@ -138,7 +138,7 @@ pub fn trigger(quire: &crate::Quire, event: &PushEvent) {
             event.pushed_at,
             push_ref,
             &secrets,
-            run::Executor::Docker,
+            run::Executor::Host,
         ) {
             tracing::error!(
                 repo = %event.repo,