You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message.push ( `The details of our automated scan for your pull request are listed below. If our scan detected errors, they must be corrected before this pull request will be advanced to the review stage:\n` );
224
-
message.push ( "\n<br />\n\n---\n\n<br />\n\n" );
225
-
message.push ( "### About\nThis pull request includes the following information:" );
message.push ( `The details of our automated scan for your pull request are listed below. If our scan detected errors, they must be corrected before this pull request will be advanced to the review stage:\n` );
225
+
message.push ( "\n<br />\n\n---\n\n<br />\n\n" );
226
+
message.push ( "### About\nThis pull request includes the following information:" );
226
227
227
-
let bHasError = false;
228
-
let bHasWarning = false;
228
+
let bHasError = false;
229
+
let bHasWarning = false;
229
230
230
-
let date = new Date( `${ context.payload.pull_request.created_at }` );
231
+
let date = new Date( `${ context.payload.pull_request.created_at }` );
231
232
date.toISOString( )
232
233
233
-
const actor = '${{ github.actor }}';
234
+
const actor = '${{ github.actor }}';
234
235
235
236
const dateTimeformat = ( date ) =>
236
237
{
@@ -246,12 +247,12 @@ jobs:
246
247
hours = hours ? hours : 12;
247
248
minutes = minutes.toString( ).padStart( 2, '0' );
248
249
249
-
let mergeTime = month + '.' + day + '.' + year + ' ' + hours + ':' + minutes + ' ' + x;
250
+
let mergeTime = month + '.' + day + '.' + year + ' ' + hours + ':' + minutes + ' ' + x;
250
251
251
252
return mergeTime;
252
253
}
253
254
254
-
let date_created = dateTimeformat( date ) + " UTC";
255
+
let date_created = dateTimeformat( date ) + " UTC";
0 commit comments