From 99ec349e39b29d227c71dc5d7578a003d429b5fe Mon Sep 17 00:00:00 2001 From: Markus Waldheim Date: Tue, 14 Jul 2026 10:03:00 +0200 Subject: [PATCH] fix(schema): use canonical short plugin name in schema id The schema/v1.json id used this repo's full name (updater-python) instead of the short, registered plugin name (python) that the semrel-registry and docs (semrel.io configuration guide) require in the schema URL: https://registry.semrel.io/schemas/plugins/NAME/v1.json. Fix id to match, consistent with every other semrel plugin schema. --- schema/v1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schema/v1.json b/schema/v1.json index edd5959..713abc4 100644 --- a/schema/v1.json +++ b/schema/v1.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "$id": "https://registry.semrel.io/schemas/plugins/updater-python/v1.json", + "$id": "https://registry.semrel.io/schemas/plugins/python/v1.json", "title": "updater-python plugin configuration", "description": "Schema v1 for the updater-python semrel plugin. Configure via SEMREL_* environment variables.", "type": "object",