// Package buildinfo holds values injected at build time via -ldflags -X. // Defaults keep local (non-CI) builds working: no token means run reporting // is silently skipped, and version shows "dev". package buildinfo var ( // Version is the git tag (e.g. "v0.10") or short commit SHA of this build. Version = "dev" // RunsToken is the Forgejo write:issue token for the x9/xetup-runs repo. // Empty on local builds -> runreport is a no-op (see internal/runreport). RunsToken = "" )