From 80503c52b9bc73c634730158d69da2fe2a55981f Mon Sep 17 00:00:00 2001 From: Paul Nothaft Date: Wed, 8 Jul 2026 20:29:19 +0200 Subject: [PATCH] ci: run the Tests workflow on stable-targeted PRs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tests.yml (the backend/frontend Jest+Vitest jobs) only triggered on main/beta, but those two jobs are required status checks on the stable branch. A beta→stable promote PR therefore hung forever on 'Expected — Waiting for status to be reported' for backend/frontend, while docker-build / install-smoke / schema-drift (already listing stable) ran fine. Add stable to the push + pull_request filters so the Tests suite runs on promote PRs too. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b4342ae4..fd83a548 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,9 +17,9 @@ name: Tests on: push: - branches: [main, beta] + branches: [main, beta, stable] pull_request: - branches: [main, beta] + branches: [main, beta, stable] workflow_dispatch: permissions: