diff --git a/cmd/test/user-profile/main.go b/cmd/test/user-profile/main.go index fa70759..76d49d2 100644 --- a/cmd/test/user-profile/main.go +++ b/cmd/test/user-profile/main.go @@ -13,7 +13,7 @@ func main() { router := httprouter.New() router.GET("/", func(w http.ResponseWriter, r *http.Request, p httprouter.Params) { - fmt.Fprint(w, "test via PR ✅✅✅\n") + fmt.Fprint(w, "test via push another branch and PR ✅✅✅\n") key := "MESSAGE" fmt.Fprintf(w, "Env read: %v = %v.\n", key, os.Getenv(key)) })