From 72fdbd86dfed213d0114ceed9a05021091a7ba87 Mon Sep 17 00:00:00 2001 From: frostebite Date: Tue, 10 Mar 2026 07:05:21 +0000 Subject: [PATCH] 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 --- .github/workflows/validate-orchestrator-integration.yml | 3 ++- .github/workflows/validate-orchestrator.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate-orchestrator-integration.yml b/.github/workflows/validate-orchestrator-integration.yml index 3bc800f0..bb1118c4 100644 --- a/.github/workflows/validate-orchestrator-integration.yml +++ b/.github/workflows/validate-orchestrator-integration.yml @@ -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' diff --git a/.github/workflows/validate-orchestrator.yml b/.github/workflows/validate-orchestrator.yml index 63d36ba6..13e0c073 100644 --- a/.github/workflows/validate-orchestrator.yml +++ b/.github/workflows/validate-orchestrator.yml @@ -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'