From 4f5e8687f21866f150a97eb7e60b66e9c696404c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Zemanovi=C4=8D?= Date: Mon, 11 Nov 2024 09:23:49 +0100 Subject: [PATCH] ci: fix maintenance branch name pattern --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b21f66a87d..b32191d333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,12 +4,12 @@ on: push: branches: - main - - 'maint-[0-9]+.[0-9]+.[0-9]+' + - 'maint-[0-9]+.[0-9]+' # Run in PRs with conflicts (https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#pull_request) pull_request_target: branches: - main - - 'maint-[0-9]+.[0-9]+.[0-9]+' + - 'maint-[0-9]+.[0-9]+' types: [opened, synchronize, reopened, ready_for_review] workflow_dispatch: