diff --git a/ci/release/Jenkinsfile b/ci/release/Jenkinsfile index 5da312823..9f5e636a0 100644 --- a/ci/release/Jenkinsfile +++ b/ci/release/Jenkinsfile @@ -218,7 +218,9 @@ pipeline { } post { always { - notifyBuildResult notifySuccessAfterSuccess: true, maintainers: 'davide@hibernate.org' + configFileProvider([configFile(fileId: 'job-configuration.yaml', variable: 'JOB_CONFIGURATION_FILE')]) { + notifyBuildResult maintainers: (String) readYaml(file: env.JOB_CONFIGURATION_FILE).notification?.email?.recipients + } } } } \ No newline at end of file