From ca64df8feeeb5b2487b080bfe3419f07f1e3ffa3 Mon Sep 17 00:00:00 2001 From: Laurent Caouissin Date: Fri, 13 Oct 2023 15:26:11 +0200 Subject: [PATCH] ci: change glob pattern to `2.*` --- .github/workflows/ci-main.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-main.yaml b/.github/workflows/ci-main.yaml index aaa77a22d..a353820b4 100644 --- a/.github/workflows/ci-main.yaml +++ b/.github/workflows/ci-main.yaml @@ -1,10 +1,10 @@ name: Main CI on: push: - # on branche like main or 2.6, 2.64, 10.12 - branches: ['main', '[0-9]+.[0-9]+'] + # on branche like main or 2.6, 2.64 + branches: ['main', '2.*'] pull_request: - branches: ['main', '[0-9]+.[0-9]+'] + branches: ['main', '2.*'] jobs: test_lint: