Add author name and pr number in drone pipeline notifications (#31124)

* Add author name and pr number in drone pipeline notifications
pull/31152/head
Dimitris Sotirakis 4 years ago committed by GitHub
parent c01fb7efd7
commit a18e4d8d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .drone.yml
  2. 2
      scripts/lib.star

@ -690,7 +690,7 @@ steps:
image: plugins/slack
settings:
channel: grafana-ci-notifications
template: "Build {{build.number}} failed: {{build.link}}"
template: "Build {{build.number}} failed for PR {{build.pull}}: {{build.link}}\nAuthor: {{build.author}}"
webhook:
from_secret: slack_webhook
@ -1609,7 +1609,7 @@ steps:
image: plugins/slack
settings:
channel: grafana-ci-notifications
template: "Build {{build.number}} failed: {{build.link}}"
template: "Build {{build.number}} failed for PR {{build.pull}}: {{build.link}}\nAuthor: {{build.author}}"
webhook:
from_secret: slack_webhook
@ -2511,7 +2511,7 @@ steps:
image: plugins/slack
settings:
channel: grafana-ci-notifications
template: "Build {{build.number}} failed: {{build.link}}"
template: "Build {{build.number}} failed for PR {{build.pull}}: {{build.link}}\nAuthor: {{build.author}}"
webhook:
from_secret: slack_webhook
@ -3309,7 +3309,7 @@ steps:
image: plugins/slack
settings:
channel: grafana-ci-notifications
template: "Build {{build.number}} failed: {{build.link}}"
template: "Build {{build.number}} failed for PR {{build.pull}}: {{build.link}}\nAuthor: {{build.author}}"
webhook:
from_secret: slack_webhook

@ -71,7 +71,7 @@ def slack_step(channel):
'from_secret': 'slack_webhook',
},
'channel': channel,
'template': 'Build {{build.number}} failed: {{build.link}}',
'template': 'Build {{build.number}} failed for PR {{build.pull}}: {{build.link}}\nAuthor: {{build.author}}',
},
}

Loading…
Cancel
Save