From 653599faebb22aa402c221589a59ae0228c19569 Mon Sep 17 00:00:00 2001 From: kellystephany24 <138157065+kellystephany24@users.noreply.github.com> Date: Mon, 12 Aug 2024 13:43:30 -0600 Subject: [PATCH] Update nodejsDSL.groovy --- DSL/nodejsDSL.groovy | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/DSL/nodejsDSL.groovy b/DSL/nodejsDSL.groovy index 740ee73..e401665 100644 --- a/DSL/nodejsDSL.groovy +++ b/DSL/nodejsDSL.groovy @@ -2,8 +2,8 @@ job('Aplicacion Node.js DSL') { description('Aplicación Node JS DSL para el curso de Jenkins') scm { git('https://github.com/macloujulian/nodejsapp.git', 'master') { node -> - node / gitConfigName('macloujulian') - node / gitConfigEmail('macloujulian@gmail.com') + node / gitConfigName('kellystephany24') + node / gitConfigEmail('kellystephany24@yahoo.com') } } triggers { @@ -15,23 +15,4 @@ job('Aplicacion Node.js DSL') { steps { shell("npm install") } - publishers { - slackNotifier { - notifyAborted(true) - notifyEveryFailure(true) - notifyNotBuilt(false) - notifyUnstable(false) - notifyBackToNormal(true) - notifySuccess(true) - notifyRepeatedFailure(false) - startNotification(false) - includeTestSummary(false) - includeCustomMessage(false) - customMessage(null) - sendAs(null) - commitInfoChoice('NONE') - teamDomain(null) - authToken(null) - } - } }