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 a1078ea commit e300d99Copy full SHA for e300d99
index.js
@@ -30,7 +30,7 @@ module.exports = {
30
var startDeployDate = this.context.slackStartDeployDate;
31
var endDeployDate = new Date();
32
var duration = moment.duration(endDeployDate - startDeployDate);
33
- var value = duration.minutes() + '[min], ' + duration.seconds() + ' [s], ' + duration.milliseconds() + ' [ms].';
+ var value = duration.minutes() + ' min, ' + duration.seconds() + ' s, ' + duration.milliseconds() + ' ms.';
34
35
return slack.notify({
36
attachments: [{
0 commit comments