fix manager.js
This commit is contained in:
parent
a89aef674d
commit
e2f702a7d0
|
|
@ -734,8 +734,10 @@ class ModuleManager {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip config.yaml templates - we'll generate clean ones with actual values
|
// Skip module root config.yaml only - generated by config collector with actual values
|
||||||
if (file === 'config.yaml' || file.endsWith('/config.yaml')) {
|
// Workflow-level config.yaml (e.g. workflows/orchestrate-story/config.yaml) must be copied
|
||||||
|
// for custom modules that use workflow-specific configuration
|
||||||
|
if (file === 'config.yaml') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue