From 7d2a29c8fcb432dc70204ed00a0e3811fe33666e Mon Sep 17 00:00:00 2001 From: Brian Love Date: Wed, 13 May 2026 20:26:39 -0700 Subject: [PATCH] ci: gate the fixture drift workflow on manual dispatch only The committed fixtures are handwritten seeds, not captured from real upstream calls. Drift detection against real upstream will almost always trip the byte-size threshold until recorded fixtures land. Switch to workflow_dispatch-only and re-enable the cron when there is something real to compare against. --- .github/workflows/aimock-drift.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aimock-drift.yml b/.github/workflows/aimock-drift.yml index 9b9fa60d..3ab1e922 100644 --- a/.github/workflows/aimock-drift.yml +++ b/.github/workflows/aimock-drift.yml @@ -1,9 +1,11 @@ name: aimock fixture drift on: - schedule: - - cron: '0 7 * * *' workflow_dispatch: + # NOTE: scheduled cron is intentionally omitted. The committed fixtures are + # handwritten seeds — drift detection only becomes meaningful once a phase + # lands recorded fixtures. Re-enable a `schedule:` trigger here at that + # point (weekly cron is a reasonable starting cadence). jobs: drift: