From f773559bc90f4b839d6e071ba1db2ed9018ebf74 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Thu, 27 Jun 2024 11:15:12 -0700 Subject: [PATCH] workflows/ci.yml fix push branch regex The current pattern matches the following: "sdf", "sdf0", "sdf1", ..., "sdf8", "sdf9" of which "sdf" is incorrect, and only "sdf9" is currently supported. This updates the pattern to match single digits "sdf1" - "sdf9" and double digits "sdf10" to "sdf99". Signed-off-by: Steve Peters --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a0a9947a..aa170f7fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: pull_request: push: branches: - - 'sdf[0-9]?' + - 'sdf[1-9]?[0-9]' - 'main' jobs: