From 53bae5a285347784b798ad1e31aa5d91dfdc1630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Tue, 2 Apr 2024 20:02:00 +0200 Subject: [PATCH] Add autoupdate.needs_manual_tweaks to manifest schema, unused for now. It will be used in the future to print a custom message in the autoupdate PRs, maybe even from a doc/UPDATE_PR.md file from the app's repository. --- schemas/manifest.v2.schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/schemas/manifest.v2.schema.json b/schemas/manifest.v2.schema.json index 6f38292e..e30bedea 100644 --- a/schemas/manifest.v2.schema.json +++ b/schemas/manifest.v2.schema.json @@ -579,6 +579,10 @@ "allow_prereleases": { "type": "boolean", "description": "Allow prereleases when using strategy = latest_X_release" + }, + "needs_manual_tweaks": { + "type": "boolean", + "description": "Inform the maintainer of manual steps to make autoupdate PRs work" } } }