From 5adef10229ae035a1131a36f9063bf466515222b Mon Sep 17 00:00:00 2001 From: Jon Langevin Date: Sat, 23 May 2026 22:09:18 -0400 Subject: [PATCH] chore: align internal.Version sentinel to 0.0.0 (workflow#764) ldflag injects real version at release; sentinel was 'dev' but workflow#762 standardizes on '0.0.0' so wfctl plugin validate-contract --for-publish can ParseSemver it without a special case. --- internal/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/plugin.go b/internal/plugin.go index ad53afe..44d5451 100644 --- a/internal/plugin.go +++ b/internal/plugin.go @@ -8,7 +8,7 @@ import ( // Version is set at build time via -ldflags // "-X github.com/GoCodeAlone/workflow-plugin-github/internal.Version=X.Y.Z" -var Version = "dev" +var Version = "0.0.0" // webhookRouteConfig is the config fragment YAML that declares the GitHub // webhook HTTP route so the engine's HTTP server registers it via the normal