diff --git a/main.go b/main.go index a23452d..d63d008 100644 --- a/main.go +++ b/main.go @@ -80,10 +80,10 @@ func sendNotification(result jobResult, notification notificationConfig) error { msg.Priority = 10 if result.isSuccess() { - title = "✅ [scron] " + result.job.Name + title = "✅ [scron][success] " + result.job.Name msg.Priority = -1 } else { - title = "❌ [scron] " + result.job.Name + title = "❌ [scron][error] " + result.job.Name } msg.Message = result.outputString