From 436483aac7455fe7c157d8f247761bcd7c0abc62 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 1 Apr 2023 17:12:44 +0100 Subject: [PATCH] ci: remove Drone CI --- .drone.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index cd4c77d..0000000 --- a/.drone.yml +++ /dev/null @@ -1,27 +0,0 @@ ---- -kind: pipeline -type: exec -name: Matrix Notifier check - -steps: -- name: Pre-commit checks - commands: - - nix flake check - -- name: Notifiy - commands: - - nix run . - environment: - ADDRESS: - from_secret: matrix_homeserver - ROOM: - from_secret: matrix_roomid - USER: - from_secret: matrix_username - PASS: - from_secret: matrix_password - when: - status: - - failure - - success -...