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