From 3a99582c049b049a68060e08dee399455b3bfcf0 Mon Sep 17 00:00:00 2001 From: tsk Date: Tue, 28 Oct 2025 12:57:54 -0400 Subject: [PATCH] fix: branches for ci (#1233) --- .github/workflows/ci.yml | 2 +- .github/workflows/nutshell_itest.yml | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96be7a9c..ae9be54c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ on: pull_request: branches: - main - - 'v[0-9]+.[0-9]+.x' # Match version branches like v0.13.x, v1.0.x, etc. + - 'v[0-9]*.[0-9]*.x' # Match version branches like v0.13.x, v1.0.x, etc. release: types: [created] diff --git a/.github/workflows/nutshell_itest.yml b/.github/workflows/nutshell_itest.yml index d967837c..a572d2cf 100644 --- a/.github/workflows/nutshell_itest.yml +++ b/.github/workflows/nutshell_itest.yml @@ -1,6 +1,14 @@ name: Nutshell integration -on: [push, pull_request] +on: + push: + branches: [main] + pull_request: + branches: + - main + - 'v[0-9]*.[0-9]*.x' # Match version branches like v0.13.x, v1.0.x, etc. + release: + types: [created] jobs: nutshell-integration-tests: