From edcc5acf56ba3034491e5934e93424b9490aeac6 Mon Sep 17 00:00:00 2001 From: Johanna England Date: Thu, 3 Oct 2024 16:04:16 +0200 Subject: [PATCH] Fix branch specification for test workflow GitHub uses ? to indicate 0 or more characters instead of the regex + --- .github/workflows/build-and-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 5596ca4a42..382447835d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -3,7 +3,7 @@ on: push: branches: - master - - '[1-9][0-9]*.[0-9]+.x' + - '[1-9][0-9]?.[0-9]+.x' pull_request: schedule: # Run daily at 08:00 CEST (06:00 UST) - cron: '0 6 * * *'