This commit is contained in:
Oleksandr Butenko 2021-07-13 16:03:25 +03:00 committed by GitHub
parent 22d2495d64
commit dca3f21cc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -15,7 +15,11 @@ pipeline {
}
stage('Jira2') {
steps {
jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992'
script {
TaskID = sh 'git log -1 --pretty=%'
sh 'echo ${TaskID}'
jiraAddComment idOrKey: "${TaskID}", comment: 'build successfull', site: 'butenko992'
}
}
}
stage('Build') {