From 49eea5352c05f904a694a81ace98d4ad653567b8 Mon Sep 17 00:00:00 2001 From: Gerard O'Keefe <125429928+gokeefe-atb@users.noreply.github.com> Date: Mon, 10 Aug 2026 12:22:25 -0600 Subject: [PATCH] fix: schema does not allow ignore_error in a for loop (#2044) Co-authored-by: O'Keefe, Gerard (Gerry) --- website/src/public/schema.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/website/src/public/schema.json b/website/src/public/schema.json index e9b78843..409fd231 100644 --- a/website/src/public/schema.json +++ b/website/src/public/schema.json @@ -442,6 +442,10 @@ "description": "Silent mode disables echoing of command before Task runs it", "type": "boolean" }, + "ignore_error": { + "description": "Prevent command from aborting the execution of task even after receiving a status code of 1", + "type": "boolean" + }, "platforms": { "description": "Specifies which platforms the command should be run on.", "$ref": "#/definitions/platforms" @@ -468,6 +472,10 @@ "description": "Silent mode disables echoing of command before Task runs it", "type": "boolean" }, + "ignore_error": { + "description": "Prevent command from aborting the execution of task even after receiving a status code of 1", + "type": "boolean" + }, "platforms": { "description": "Specifies which platforms the command should be run on.", "$ref": "#/definitions/platforms"