Skip to content

Commit 72fdbd8

Browse files
frostebiteclaude
andcommitted
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>
1 parent ad1a1e8 commit 72fdbd8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/validate-orchestrator-integration.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Validate Orchestrator Integration
22

33
on:
4+
workflow_dispatch:
45
push:
5-
branches: [main, 'release/**', 'feature/**']
6+
branches: [main, 'release/**', 'feature/**', 'refactor/**']
67
paths:
78
- 'src/model/orchestrator-plugin.ts'
89
- 'src/model/build-parameters.ts'

.github/workflows/validate-orchestrator.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: Validate Orchestrator Compatibility
22

33
on:
4+
workflow_dispatch:
45
push:
5-
branches: [main, 'release/**', 'feature/**']
6+
branches: [main, 'release/**', 'feature/**', 'refactor/**']
67
paths:
78
- 'src/model/orchestrator-plugin.ts'
89
- 'src/model/build-parameters.ts'

0 commit comments

Comments
 (0)