fix: branches for ci (#1233)

This commit is contained in:
tsk
2025-10-28 12:57:54 -04:00
committed by GitHub
parent e44c83fb99
commit 3a99582c04
2 changed files with 10 additions and 2 deletions

View File

@@ -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]

View File

@@ -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: