From 5b3204773e3f7fca97ffc046e49ddf6daa32f8ff Mon Sep 17 00:00:00 2001 From: Alan Chester Date: Sun, 29 Mar 2026 15:34:20 -0400 Subject: [PATCH] fix: add workflow_call trigger to validate.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release.yml calls validate.yml as a reusable workflow via workflow_call, but validate.yml was missing that trigger — causing the release pipeline to fail instantly with a workflow file error. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/validate.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index d40be66..66661e5 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -5,6 +5,7 @@ on: branches: [main] pull_request: branches: [main] + workflow_call: jobs: # ── Job 1: Lint (fast, runs on Linux) ──────────────────────────────────────