From 637c275bf7a9af5ddee096e2e99d07179dec1018 Mon Sep 17 00:00:00 2001 From: Jack McIntyre Date: Wed, 24 Jun 2026 13:54:27 +1000 Subject: [PATCH] feat(01KVVDTG): Every merge to the main branch starts a fresh CI run that reports pass or fail on the merge commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove the `paths:` filter from the push-to-main trigger in `.github/workflows/ci.yml` so that every merge to the main branch — regardless of which files it touches — starts a fresh CI run that resolves to a clear pass or fail on the merge commit. The pull_request trigger retains its paths filter (no change to PR behaviour). This restores unconditional main-branch re-validation, including the dist-drift check that only runs on push events. --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 036513f9..0b4ffe82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,6 @@ name: CI on: push: branches: [main] - paths: - - "plugins/flow/**" - - ".github/workflows/ci.yml" pull_request: paths: - "plugins/flow/**"