feat: Add the ability to set args for module calls

This commit is contained in:
Gerald Pinder 2025-05-17 17:32:06 -04:00
parent fecdf3b39a
commit 3c16ca5593

View file

@ -125,6 +125,10 @@ model ModuleDefaults {
* https://blue-build.org/reference/module/#no-cache-optional
*/
`no-cache`?: boolean = false;
/** Environment variables to add for the module call.
*/
env?: Record<string>;
}
@jsonSchema("module-custom-v1.json")