From 963e2d1311a14ccebabeb23dfebad530cc0823d0 Mon Sep 17 00:00:00 2001 From: Paul Irwin Date: Mon, 1 Dec 2025 16:33:03 -0700 Subject: [PATCH] Update CI workflow to run on release/* branches and remove develop MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Enable build and tests on release/* branches to support release workflows. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/dotnet.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1f1e3df..b1ff736 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -2,9 +2,10 @@ name: .NET on: push: - branches: [ main, develop ] + branches: [ main, 'release/*' ] pull_request: - branches: [ main, develop ] + branches: [ main, 'release/*' ] + workflow_dispatch: jobs: build: