This is an automated email from the ASF dual-hosted git repository.
sblackmon pushed a commit to branch snapshots
in repository https://gitbox.apache.org/repos/asf/streams.git
The following commit(s) were added to refs/heads/snapshots by this push:
new e5cf0c5f2d fix notify
e5cf0c5f2d is described below
commit e5cf0c5f2d8ba741a88548f5a58f54b2f4e46991
Author: Steve Blackmon <[email protected]>
AuthorDate: Fri Feb 16 13:58:17 2024 -0600
fix notify
Signed-off-by: Steve Blackmon <[email protected]>
---
Jenkinsfile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Jenkinsfile b/Jenkinsfile
index 992292b89e..02fe21d20b 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -68,7 +68,9 @@ pipeline {
}
stage ('Notify') {
- step([$class: 'Mailer', notifyEveryUnstableBuild: true,
recipients: '[email protected]', sendToIndividuals: true])
+ steps {
+ step([$class: 'Mailer', notifyEveryUnstableBuild:
true, recipients: '[email protected]', sendToIndividuals: true])
+ }
}
}
}