From 050cf93f272e76f0fc7a408fc9e85ab02321459c Mon Sep 17 00:00:00 2001 From: cyw Date: Thu, 12 Sep 2024 00:44:46 +0800 Subject: [PATCH] fix: add missing generic updaters in to release please config schema extraFiles (#2344) Co-authored-by: Jeff Ching --- schemas/config.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/schemas/config.json b/schemas/config.json index 2477278a5..80056c466 100644 --- a/schemas/config.json +++ b/schemas/config.json @@ -188,6 +188,25 @@ } }, "required": ["type", "path"] + }, + { + "description": "An extra arbitrary file that includes release-please generic updater's annotation.", + "type": "object", + "properties": { + "type": { + "description": "The file format type.", + "enum": ["generic"] + }, + "path": { + "description": "The path to the file.", + "type": "string" + }, + "glob": { + "description": "Whether to treat the path as a glob. Defaults to `false`.", + "type": "boolean" + } + }, + "required": ["type", "path"] } ] }