Skip to content

Commit

Permalink
ci: fix missing REPO_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
endorama committed Jun 16, 2022
1 parent ba51733 commit f2e8d66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .ci/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pipeline {
agent { label 'ubuntu-20.04 && immutable' }
environment {
REPO = "elastic-agent-changelog-tool"
REPO_URL = "https://github.com/elastic/${env.REPO}"
BASE_DIR = "src/github.com/elastic/${env.REPO}"
JOB_GIT_CREDENTIALS = "f6c7695a-671e-4f4f-a331-acdce44ff9ba"
PIPELINE_LOG_LEVEL = 'INFO'
Expand Down Expand Up @@ -91,7 +92,7 @@ pipeline {
}
success {
notifyStatus(slackStatus: 'good', subject: "[${env.REPO}] Release *${env.TAG_NAME}* published",
body: "Build: (<${env.RUN_DISPLAY_URL}|here>)\n<${env.REPO_URL?.trim()}|Go to repo> <${env.REPO_URL?.trim()}/releases/tag/${env.TAG_NAME}|Go to release>")
body: "Build: (<${env.RUN_DISPLAY_URL}|here>)\n<${env.REPO_URL}|Go to repo> <${env.REPO_URL}/releases/tag/${env.TAG_NAME}|Go to release>")
}
}
}
Expand Down

0 comments on commit f2e8d66

Please sign in to comment.