Skip to content

Commit 7f2db8f

Browse files
paulirwinclaude
andauthored
Enable CI on release/* branches and add manual trigger (#56)
## Summary - Configure CI workflow to run on `release/*` branches - Remove `develop` branch from CI triggers - Add `workflow_dispatch` to enable manual workflow runs on any branch ## Test plan - Verify workflow triggers on pushes to release/* branches - Verify workflow triggers on PRs to release/* branches - Verify workflow can be manually triggered from Actions tab 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <[email protected]>
1 parent bb304e5 commit 7f2db8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@ name: .NET
22

33
on:
44
push:
5-
branches: [ main, develop ]
5+
branches: [ main, 'release/*' ]
66
pull_request:
7-
branches: [ main, develop ]
7+
branches: [ main, 'release/*' ]
8+
workflow_dispatch:
89

910
jobs:
1011
build:

0 commit comments

Comments
 (0)