Skip to content

Commit

Permalink
Need to initialize in jenkinsfile before call
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceMacBuche committed Mar 13, 2024
1 parent 8a6fe93 commit 28d4211
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
def failedBuild = false
def version = "7.3"

def slackResponse = ""
def changeUrl = env.CHANGE_URL

if (changeUrl == null) {
def slackResponse = slackSend(channel: "ci", message: "${version} - build - <"+currentBuild.absoluteUrl+"|Link>", color: "#00A8E1")
slackResponse = slackSend(channel: "ci", message: "${version} - build - <"+currentBuild.absoluteUrl+"|Link>", color: "#00A8E1")
}

def errors = []
Expand Down

0 comments on commit 28d4211

Please sign in to comment.