From 2891867de98d232c03a25d6b22588447eb0d0dfa Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Fri, 7 Feb 2025 23:51:01 +0100 Subject: [PATCH] Trigger tests for patch release branch pushes (#15037) Make sure that when creating a cherry-picked or otherwise diverging patch release branch the final product still gets checked via CI before a release is cut. To trigger this patch release branches MUST follow the pattern: `patch-release-*` (e.g. `patch-release-0.102.1`) --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2976f97b54..8777bd01e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,7 @@ on: push: branches: - main + - 'patch-release-*' name: continuous-integration