From c92b4a3d50c890b0c1659fd498e3673ba1de0f79 Mon Sep 17 00:00:00 2001 From: Jason Jean Date: Fri, 16 May 2025 15:20:56 -0400 Subject: [PATCH] chore(repo): make sure that the ci pipeline runs on any release branches (#31257) ## Current Behavior Pipeline only runs on `master` and PRs ## Expected Behavior Pipeline runs on any release branches and PRs ## Related Issue(s) Fixes # --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a4a51cd14..f1c43c195c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - '[0-9]+.[0-9]+.x' pull_request: branches: - "**"