From fc351d76589e5ae2df74e183d9db0c34b575d601 Mon Sep 17 00:00:00 2001 From: James Wilson Date: Tue, 3 Jun 2025 12:38:44 +0100 Subject: [PATCH] update branch matching in CI --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index e1889faf5c..bd64742683 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -9,13 +9,13 @@ on: # If we want to backport changes to an old release, push a branch # eg v0.40.x and CI will run on it. PRs merging to such branches # will also trigger CI. - - v0.*.x + - v0.[0-9]+.x pull_request: # Run jobs for any external PR that wants # to merge to master, too: branches: - master - - v0.*.x + - v0.[0-9]+.x concurrency: group: ${{ github.ref }}-${{ github.workflow }}