From 895df2ca286c38290c3f493db2c42cf666755611 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Thu, 30 Apr 2026 14:27:58 +1200 Subject: [PATCH] ci: never overlap SQLite and the legacy adapters in the matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Default per-PR runs target SQLite/shared only. PRs that bump utopia-php/database swap to the legacy MariaDB/PostgreSQL/MongoDB matrix across both modes — SQLite is excluded there since the SQLite layer is already covered by every other PR. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc00c1c254..6ec9702cd5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -223,7 +223,7 @@ jobs: const pr = context.payload.pull_request; if (!pr) { - core.setOutput('databases', JSON.stringify([...defaultDatabases, ...fullMatrixDatabases])); + core.setOutput('databases', JSON.stringify(fullMatrixDatabases)); core.setOutput('modes', JSON.stringify(fullMatrixModes)); return; }