From 61eec87bceeff81e70e337a9ae3bce08366880c0 Mon Sep 17 00:00:00 2001 From: Jarek Potiuk Date: Wed, 14 Aug 2024 14:52:23 +0200 Subject: [PATCH] Enable pull requests to be run from v*test branches (#41474) Since we switch from direct push of cherry-picking to open PRs against v*test branch, we should enable PRs to run for the target branch. (cherry picked from commit a9363e6a30d73a647ed7d45c92d46d1f6f98513f) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68aa51bf860f5..a19879ea172a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ on: # yamllint disable-line rule:truthy push: branches: ['v[0-9]+-[0-9]+-test'] pull_request: - branches: ['main'] + branches: ['main', 'v[0-9]+-[0-9]+-test'] workflow_dispatch: permissions: # All other permissions are set to none