diff --git a/pkg/notifications/bonfire.go b/pkg/notifications/bonfire.go index e96920782..d70a740ad 100644 --- a/pkg/notifications/bonfire.go +++ b/pkg/notifications/bonfire.go @@ -25,7 +25,7 @@ func (b bonfireNotifier) Notify(domain, provider, msg string, err error, preview } else if err != nil { payload = fmt.Sprintf(`**ERROR running correction on %s[%s] -** (%s) Error: %s`, domain, provider, msg, err) } else { - payload = fmt.Sprintf(`Successfully ran correction for %s[%s] - %s`, domain, provider, msg) + payload = fmt.Sprintf(`Successfully ran correction for **%s[%s]** - %s`, domain, provider, msg) } http.Post(string(b), "text/markdown", strings.NewReader(payload)) }