From 3400255de5a7e7f5b7043346446a7bec546a8a05 Mon Sep 17 00:00:00 2001 From: Roman Berezkin Date: Mon, 31 Aug 2026 00:01:15 +0300 Subject: [PATCH] [ci] Run PR checks on release branches Same one-line fix as #441 for release-0.32: PRs into this branch get no CI because the pull_request trigger only matches base main. Recent backports show the cost: #460 broke the v0.30.22 build and it was only caught when the tag was built (#461). The pr-build job would have caught it at PR time. 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 8f2705a11..ceaa0a870 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"