about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2019-09-25 17:40:54 +0200
committerEmile <hanemile@protonmail.com>2019-09-25 17:40:54 +0200
commita1460f28926c11e7a17c67237ace93cdb2532a5b (patch)
tree53fc9d135f718861c364a1b914711a7a403093d3
parentb171b43fd8040de3997961e223fda8209fc256ee (diff)
removed the telegram notifications from the ci
-rw-r--r--.drone.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.drone.yml b/.drone.yml
index 7109c0c..0508655 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -22,36 +22,3 @@ steps:
         from_secret: docker_username
       password:
         from_secret: docker_password
-
-- name: telegram-notification
-  image: appleboy/drone-telegram
-  settings:
-    token: 
-      from_secret: telegram_token
-    to: 
-      from_secret: telegram_to
-    when:
-      status: [ success, failure ]
-    format: markdown
-    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}}