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