From fe291e98a5b56d5a9149cc808ff76efd720de353 Mon Sep 17 00:00:00 2001 From: Markus Waldheim Date: Tue, 14 Jul 2026 10:00:40 +0200 Subject: [PATCH] fix(schema): use canonical short plugin name in schema id The schema/v1.json id used this repo's full name (hook-gitplugin) instead of the short, registered plugin name (gitplugin) 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 4156530..644df46 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/hook-gitplugin/v1.json", + "$id": "https://registry.semrel.io/schemas/plugins/gitplugin/v1.json", "title": "hook-gitplugin plugin configuration", "description": "Schema v1 for the hook-gitplugin semrel plugin. Configure via SEMREL_* environment variables.", "type": "object",