From 7d854096b4924adfb28eedf59068ec93852f66a0 Mon Sep 17 00:00:00 2001 From: Myasnikov Daniil Date: Wed, 17 Jun 2026 16:54:11 +0500 Subject: [PATCH] ci(workflows): trigger build on release-* branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without this, pushes to maintenance branches (release-1.4, release-1.5, …) do not trigger the build workflow, so backported fixes land without CI validation. Assisted-By: Claude Signed-off-by: Myasnikov Daniil --- .github/workflows/build.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 95c9a98..751d7f8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -4,6 +4,7 @@ on: push: branches: - main + - 'release-*' tags: - 'v*'