This is an automated email from the ASF dual-hosted git repository.
mattsicker pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/master by this push:
new a678b41 Add colons to icon
a678b41 is described below
commit a678b416c67b28e90d54276c73a8b74853ddc21a
Author: Matt Sicker <[email protected]>
AuthorDate: Sat Apr 4 22:23:39 2020 -0500
Add colons to icon
Maybe this is the syntax?
---
Jenkinsfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 70e5cd5..484c35f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -83,7 +83,7 @@ pipeline {
fixed {
slackSend channel: 'logging',
color: 'good',
- iconEmoji: 'beer_parrot',
+ iconEmoji: ':beer_parrot:',
message: "Build back to normal:
<${env.BUILD_URL}|${env.BUILD_DISPLAY_NAME}>."
mail to: '[email protected]',
subject: "Jenkins build of ${env.JOB_NAME}
(${env.BUILD_NUMBER}) back to normal",
@@ -92,7 +92,7 @@ pipeline {
failure {
slackSend channel: 'logging',
color: 'danger',
- iconEmoji: 'doh',
+ iconEmoji: ':doh:',
message: "Build failed:
<${env.BUILD_URL}|${env.BUILD_DISPLAY_NAME}>."
mail to: '[email protected]',
subject: "Build failure in Jenkins build of ${env.JOB_NAME}
(${env.BUILD_NUMBER})",
@@ -110,7 +110,7 @@ Mr. Jenkins
unstable {
slackSend channel: 'logging',
color: 'warning',
- iconEmoji: 'sadpanda',
+ iconEmoji: ':sadpanda:',
message: "Build unstable: ${env.BUILD_URL}"
}
}