Files
ma/nextflow/tests-v1/checks/workflow-oncomplete.nf/.config
2026-04-29 23:01:54 +02:00

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'
}
}