From 87f0fd52c81fd327c012aacb8200a0b233ba243f Mon Sep 17 00:00:00 2001 From: mergify-ci-bot Date: Wed, 16 Oct 2024 00:08:49 +0000 Subject: [PATCH] chore: sync Mergify JSON Schema files --- public/api-schemas.json | 5 ++--- public/mergify-configuration-schema.json | 8 ++++++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/public/api-schemas.json b/public/api-schemas.json index 91d855f33..d8101bd91 100644 --- a/public/api-schemas.json +++ b/public/api-schemas.json @@ -1449,9 +1449,8 @@ "anyOf": [ { "type": "integer", - "minimum": 0, - "ge": 1, - "lt": 2147483647 + "minimum": 1, + "exclusiveMaximum": 2147483647 }, { "type": "null" diff --git a/public/mergify-configuration-schema.json b/public/mergify-configuration-schema.json index cb965daaa..0c020a724 100644 --- a/public/mergify-configuration-schema.json +++ b/public/mergify-configuration-schema.json @@ -2437,8 +2437,9 @@ "type": "integer" }, "batch_max_wait_time": { - "default": "30 s", + "default": "30 seconds", "description": "The maximum amount of time to wait before creating a batch when the batch is not full.", + "format": "duration", "title": "Batch Max Wait Time", "type": "string" }, @@ -2451,6 +2452,7 @@ "checks_timeout": { "anyOf": [ { + "format": "duration", "type": "string" }, { @@ -2698,8 +2700,9 @@ "type": "integer" }, "batch_max_wait_time": { - "default": "30 s", + "default": "30 seconds", "description": "The maximum amount of time to wait before creating a batch when the batch is not full.", + "format": "duration", "title": "Batch Max Wait Time", "type": "string" }, @@ -2712,6 +2715,7 @@ "checks_timeout": { "anyOf": [ { + "format": "duration", "type": "string" }, {