ci: switch to drone-matrix plugin
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-09-21 22:36:58 +02:00
parent 5705a65115
commit 6043aa8352
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 89 additions and 89 deletions

View File

@ -133,11 +133,11 @@ local PipelineNotification = {
steps: [
{
name: 'matrix',
image: 'plugins/matrix',
image: 'thegeeklab/drone-matrix',
settings: {
homeserver: { from_secret: 'matrix_homeserver' },
roomid: { from_secret: 'matrix_roomid' },
template: 'Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}',
template: 'Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}',
username: { from_secret: 'matrix_username' },
password: { from_secret: 'matrix_password' },
},

View File

@ -155,7 +155,7 @@ clone:
steps:
- name: matrix
image: plugins/matrix
image: thegeeklab/drone-matrix
settings:
homeserver:
from_secret: matrix_homeserver
@ -163,7 +163,7 @@ steps:
from_secret: matrix_password
roomid:
from_secret: matrix_roomid
template: "Status: **{{ build.status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.link }}) ({{ build.branch }}) by {{ build.author }}<br/> Message: {{ build.message }}"
template: "Status: **{{ build.Status }}**<br/> Build: [{{ repo.Owner }}/{{ repo.Name }}]({{ build.Link }}){{#if build.Branch}} ({{ build.Branch }}){{/if}} by {{ commit.Author }}<br/> Message: {{ commit.Message.Title }}"
username:
from_secret: matrix_username
@ -180,6 +180,6 @@ depends_on:
---
kind: signature
hmac: 7e013957bf35d6094663f7a823570768e08653c5c6776c4432eb12c5987a8dea
hmac: 89fa12b25e5aa010768bc8ea02700029aaa36579a4145cc93b9982cf99f0294a
...