11 lines
344 B
Plaintext
11 lines
344 B
Plaintext
workflow {
|
|
onComplete = {
|
|
println "runName: ${workflow.runName}"
|
|
println "command: ${params?.command}"
|
|
println "repository: $workflow.repository"
|
|
println "revision: $workflow.revision"
|
|
println "success: $workflow.success"
|
|
println "exitStatus: $workflow.exitStatus"
|
|
println 'DONE'
|
|
}
|
|
} |