From 36313eea94d8cc19f75c19c2030311ebba206195 Mon Sep 17 00:00:00 2001 From: Oleg Sych Date: Mon, 25 Mar 2024 14:07:59 -0700 Subject: [PATCH] Make build.yml triggers include all release_* branches Make the on/push and on/pull_request triggers list release_* branches instead of only release_4* so that validation builds are triggered for all release branches when changes are being backported. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f3fc92..7f3a952 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,12 +4,12 @@ on: push: branches: - develop - - release_4* + - 'release_*' pull_request: branches: - develop - - release_4* + - 'release_*' jobs: build: