From 0b8454bb8005252521d72957b5c96c4091639df8 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Wed, 19 Aug 2020 13:14:48 -0700 Subject: [PATCH] Add drone email notifications --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.drone.yml b/.drone.yml index bdcd92f..38ceabf 100644 --- a/.drone.yml +++ b/.drone.yml @@ -23,6 +23,19 @@ steps: commands: - make itest + - name: notify + image: drillster/drone-email + settings: + host: + from_secret: SMTP_HOST # pragma: whitelist secret + username: + from_secret: SMTP_USER # pragma: whitelist secret + password: + from_secret: SMTP_PASS # pragma: whitelist secret + from: drone@iamthefij.com + when: + status: [changed, failure] + --- kind: pipeline name: publish