From bb5ca48fe150b197c062f9ee7309174698b44dcc Mon Sep 17 00:00:00 2001 From: KaraZajac Date: Thu, 28 May 2026 13:37:35 -0400 Subject: [PATCH] ci: enable workflow_dispatch on build workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The drift-check job's if-gate already honors workflow_dispatch but the trigger itself was never added to the on: block. Without it, 'gh workflow run build.yml' fails with 422. Found while validating the v0.9.4 drift fix — wanted to confirm drift-check now passes without waiting for next Monday's cron. --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 42a189c..75cf7cf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,10 @@ on: # Runs Monday 06:00 UTC; reports any new backports / KEV additions # that haven't propagated into the corpus yet. - cron: '0 6 * * 1' + workflow_dispatch: + # Lets us trigger the drift-check job on demand (e.g. after a + # metadata refresh) without waiting for the weekly cron. The + # drift-check job's `if:` gate honors this trigger. jobs: build: