diff --git a/cli/mizu/telemetry.go b/cli/mizu/telemetry.go index e36956cd9..cb108cd43 100644 --- a/cli/mizu/telemetry.go +++ b/cli/mizu/telemetry.go @@ -15,6 +15,10 @@ func ReportRun(cmd string, args interface{}) { return } + if Branch != "main" && Branch != "develop" { + Log.Debugf("not reporting telemetry on private branches") + } + argsBytes, _ := json.Marshal(args) argsMap := map[string]string{ "telemetry_type": "execution",