From b00bd5701a9419659e78c5dd109842acfec5872b Mon Sep 17 00:00:00 2001 From: Roman Berezkin Date: Mon, 31 Aug 2026 00:00:59 +0300 Subject: [PATCH] [ci] Run PR checks on release branches For pull_request events GitHub reads the workflow from the merge ref of the PR, so this change on main does not affect the existing release branches. It makes sure every future release branch cut from main starts with the correct trigger filter. Existing branches are covered separately: #441 (release-0.32) and a sibling PR for release-0.30. Signed-off-by: Roman Berezkin --- .github/workflows/release.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75c1ddf5d..dfa1fce01 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,6 +7,7 @@ on: pull_request: branches: - "main" + - "release-*" env: GOPRIVATE: "flant.internal"