From 79caed6e68e47b98d1b5d22fa66cbdb48d81b797 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Jun 2021 19:15:50 +0200 Subject: [PATCH] WIP: test failure notification --- .drone.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2725c70..6acd151 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,6 +7,7 @@ steps: - name: Pre-commit checks commands: - nix flake check + - "false" - name: Notifiy commands: @@ -20,9 +21,8 @@ steps: from_secret: matrix_username PASS: from_secret: matrix_password - settings: - trigger: - status: - - failure - - success + when: + status: + - failure + - success ...