We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cabb30f commit a3ca32fCopy full SHA for a3ca32f
1 file changed
src/main/groovy/nfcmgg/plugin/DoneObserver.groovy
@@ -51,7 +51,8 @@ class DoneObserver implements TraceObserverV2 {
51
if (session.success) {
52
Path doneFile = location.resolve('DONE')
53
checkParent(doneFile)
54
- doneFile.text = ''
+ /* groovylint-disable-next-line LineLength */
55
+ doneFile.text = "Pipeline completed on ${new Date().format('dd/MM/yyyy')} at ${new Date().format('HH:mm:ss')}"
56
}
57
58
0 commit comments