From 91eafefb9cb8c0752f8fa3fc2279964746f26630 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 3 Feb 2019 23:22:24 +0100 Subject: [PATCH] add notify task to drone conig --- .drone.yml | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 289d224..53d816a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,8 @@ steps: - pip install ansible ansible-later -q - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy - git ls-files *[^LICENSE,.md] | xargs ansible-later -c ~/policy/config.ini - depends_on: [ clone ] + depends_on: + - clone - name: ansible-master image: python:2.7 @@ -19,4 +20,23 @@ steps: - pip install ansible ansible-later -q - git clone https://gitea.rknet.org/ansible/ansible-later-policy.git ~/policy - git ls-files *[^LICENSE,.md] | xargs ansible-later -c ~/policy/config.ini - depends_on: [ clone ] + depends_on: + - clone + + - name: notify + image: plugins/matrix + settings: + homeserver: https://matrix.rknet.org + roomid: MtidqQXWWAtQcByBhH:rknet.org + template: "Status: **{{ build.status }}**
Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}
Message: {{ build.message }}" + username: + from_secret: matrix_username + password: + from_secret: matrix_password + depends_on: + - ansible-latest + - ansible-master + when: + status: + - success + - failure