We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f0aee commit 6f4e807Copy full SHA for 6f4e807
README.md
@@ -393,6 +393,9 @@ pipeline {
393
success {
394
updateGitlabCommitStatus name: 'build', state: 'success'
395
}
396
+ aborted {
397
+ updateGitlabCommitStatus name: 'build', state: 'canceled'
398
+ }
399
400
options {
401
gitLabConnection('your-gitlab-connection-name')
@@ -403,6 +406,7 @@ pipeline {
403
406
stages {
404
407
stage("build") {
405
408
steps {
409
+ updateGitlabCommitStatus name: 'build', state: 'running'
410
echo "hello world"
411
412
0 commit comments