Skip to content

Commit e300d99

Browse files
committed
fix notice format
1 parent a1078ea commit e300d99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = {
3030
var startDeployDate = this.context.slackStartDeployDate;
3131
var endDeployDate = new Date();
3232
var duration = moment.duration(endDeployDate - startDeployDate);
33-
var value = duration.minutes() + '[min], ' + duration.seconds() + ' [s], ' + duration.milliseconds() + ' [ms].';
33+
var value = duration.minutes() + ' min, ' + duration.seconds() + ' s, ' + duration.milliseconds() + ' ms.';
3434

3535
return slack.notify({
3636
attachments: [{

0 commit comments

Comments
 (0)