How to capture the name of the developer who committed there in gitlab, so that my notification shows his name. I’ve already tried using available variables, but without success, they all only bring ScmChange
if (currentBuild.resultIsBetterOrEqualTo('SUCCESS')) {
resultMessage = "Build do projeto ${env.JOB_NAME} realizado por ${env.BUILD_USER_ID} foi feito com Sucesso na BRANCH $BRANCH."
} else {
resultMessage = "Falha no projeto ${env.JOB_NAME}"
}