From 1c2b290c20b88645d124a55ff7efcdbe669ac34c Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Sat, 3 May 2025 16:51:17 +0200 Subject: [PATCH] feat: add experiments to taskrc.yml schema --- website/static/schema-taskrc.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/website/static/schema-taskrc.json b/website/static/schema-taskrc.json index 4ed35be3..b36b1907 100644 --- a/website/static/schema-taskrc.json +++ b/website/static/schema-taskrc.json @@ -6,6 +6,18 @@ "properties": { "experiments": { "type": "object", + "ENV_PRECEDENCE": { + "type": "number", + "enum": [0, 1] + }, + "REMOTE_TASKFILES": { + "type": "number", + "enum": [0, 1] + }, + "GENTLE_FORCE": { + "type": "number", + "enum": [0, 1] + }, "additionalProperties": { "type": "integer" }