Add blacklisted charts/images to Slack message

Change-Id: Ic9b7d349d0cc3008e8e42aea7d367442530fb5cc
This commit is contained in:
Kaspars Skels 2018-10-24 14:33:31 -05:00
parent 8858df0b74
commit 4dcaef2e53
1 changed files with 5 additions and 1 deletions

View File

@ -285,7 +285,11 @@ def uplift_review = {
// send a Slack message to request review/merge
def msg = 'Latest charts/images passed green-field deployment, and sanity tests.\n' +
'A patchset is published and ready to review/merge:\n' +
' https://review.openstack.org/#/q/owner:jenkins.uplifter%2540gmail.com+status:open'
'https://review.openstack.org/#/q/owner:jenkins.uplifter%2540gmail.com+status:open'
if (!UPLIFT_BLACKLIST.isEmpty()) {
msg += "\n\nBlacklisted charts/images: ${UPLIFT_BLACKLIST}"
}
try {
notify.msg(msg, '#integration')