fix(ci): add refactor/** branch pattern and workflow_dispatch to orchestrator workflows

The refactor/orchestrator-extraction branch was not matching the
feature/** pattern, preventing the integration workflow from running
after fix commits were pushed.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
frostebite
2026-03-10 07:05:21 +00:00
parent ad1a1e8cb2
commit 72fdbd86df
2 changed files with 4 additions and 2 deletions

View File

@@ -1,8 +1,9 @@
name: Validate Orchestrator Integration
on:
workflow_dispatch:
push:
branches: [main, 'release/**', 'feature/**']
branches: [main, 'release/**', 'feature/**', 'refactor/**']
paths:
- 'src/model/orchestrator-plugin.ts'
- 'src/model/build-parameters.ts'

View File

@@ -1,8 +1,9 @@
name: Validate Orchestrator Compatibility
on:
workflow_dispatch:
push:
branches: [main, 'release/**', 'feature/**']
branches: [main, 'release/**', 'feature/**', 'refactor/**']
paths:
- 'src/model/orchestrator-plugin.ts'
- 'src/model/build-parameters.ts'