feat(CLI): Add optional --parameters to scheduled recipe (#8741)

Signed-off-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Spike Wang
2026-05-12 16:30:38 -07:00
committed by GitHub
parent bc6e0b25dc
commit ba60b597fa
9 changed files with 108 additions and 19 deletions
+21
View File
@@ -7712,6 +7712,22 @@
"format": "date-time",
"nullable": true
},
"parameters": {
"type": "array",
"items": {
"type": "array",
"items": {
"allOf": [
{
"type": "string"
},
{
"type": "string"
}
]
}
}
},
"paused": {
"type": "boolean"
},
@@ -7720,6 +7736,11 @@
"format": "date-time",
"nullable": true
},
"recipe_base_dir": {
"type": "string",
"description": "Original directory of the recipe file before it was copied to scheduled_recipes/.\nPreserved so that relative paths (sub-recipes, template includes) resolve correctly\nagainst the source tree rather than the scheduler's internal storage directory.",
"nullable": true
},
"source": {
"type": "string"
}