This commit is contained in:
Oleksandr Butenko 2021-07-13 16:23:34 +03:00 committed by GitHub
parent 597e95a748
commit 621f732c49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -12,15 +12,14 @@ pipeline {
steps {
sh 'echo ${RELEASE_NOTES}'
sh 'echo ${GIT_COMMIT_MSG}'
def commit = sh(returnStdout: true, script: 'git log -1 --pretty=%B | cat')
commit = sh(returnStdout: true, script: 'git log -1 --pretty=%B | cat')
sh 'echo ${commit}'
}
}
stage('Jira2') {
steps {
script {
commit = sh 'git log -1 --pretty=%'
sh 'echo ${TaskID}'
sh 'echo ${commit}'
jiraAddComment idOrKey: "${commit}", comment: 'build successfull', site: 'butenko992'
}
}