From 34451a220808d25581dbcc7666fc071318f44e86 Mon Sep 17 00:00:00 2001 From: sthope Date: Thu, 2 Sep 2021 12:52:38 +0200 Subject: [PATCH] Update '.drone.yml' --- .drone.yml | 40 ++++++++++++++++++++++++++++++---------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/.drone.yml b/.drone.yml index 57f24f7..38d96cb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -25,15 +25,35 @@ steps: from_secret: discord_webhook_id DISCORD_WEBHOOK_TOKEN: from_secret: discord_webhook_token - when: - event: - - push - - tag - - pull_request - - deployment - status: - - changed - - failure - - success + settings: + message: > + {{#success build.status}} + ✅ Build #{{build.number}} of `{{repo.name}}` succeeded. + + 📝 Commit by {{commit.author}} on `{{commit.branch}}`: + ``` + {{commit.message}} + ``` + 🌐 <{{ build.link }}> + {{else}} + ❌ Build #{{build.number}} of `{{repo.name}}` failed. + 📝 Commit by {{commit.author}} on `{{commit.branch}}`: + ``` + {{commit.message}} + ``` + 🌐 <{{ build.link }}> + {{/success}} + + + # when: + # event: + # - push + # - tag + # - pull_request + # - deployment + # status: + # - changed + # - failure + # - success