From b75a1d1af1890bf288831330773def5c05ab495c Mon Sep 17 00:00:00 2001 From: M Sazzadul Hoque <7600764+sazzad16@users.noreply.github.com> Date: Wed, 10 Jan 2024 11:06:32 +0600 Subject: [PATCH] Run integration workflow for 5.2.0 branch Currently integration workflow runs for versioned like `4.x` (generic major version branch), `5.0.x` (generic minor version branch). But we also need it for `5.2.0` like specific minor version branches. For this purpose, I have used a common pattern instead of adding a new pattern. --- .github/workflows/integration.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 84da5938f6..fd651fa6a4 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -10,13 +10,11 @@ on: - '**/*.rst' branches: - master - - '[0-9].x' - - '[0-9].[0-9].x' + - '[0-9].*' pull_request: branches: - master - - '[0-9].x' - - '[0-9].[0-9].x' + - '[0-9].*' schedule: - cron: '0 1 * * *' # nightly build workflow_dispatch: