File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -251,14 +251,14 @@ const inactive = lightAttendance.filter((member) => noVotes.includes(member));
251
251
if ( inactive . length ) {
252
252
// The stdout output is consumed in find-inactive-tsc.yml. If format of output
253
253
// changes, find-inactive-tsc.yml may need to be updated.
254
- console . log ( `INACTIVE_TSC_HANDLES=" ${ inactive . map ( ( entry ) => '@' + entry ) . join ( ' ' ) } " ` ) ;
254
+ console . log ( `INACTIVE_TSC_HANDLES=${ inactive . map ( ( entry ) => '@' + entry ) . join ( ' ' ) } ` ) ;
255
255
const commitDetails = inactive . map ( ( entry ) => {
256
256
let details = `Since ${ SINCE } , ` ;
257
257
details += `${ entry } attended ${ attendance [ entry ] } out of ${ meetings . size } meetings` ;
258
258
details += ` and voted in ${ votingRecords [ entry ] } of ${ votes . size } votes.` ;
259
259
return details ;
260
260
} ) ;
261
- console . log ( `DETAILS_FOR_COMMIT_BODY=" ${ commitDetails . join ( ' ' ) } " ` ) ;
261
+ console . log ( `DETAILS_FOR_COMMIT_BODY=${ commitDetails . join ( ' ' ) } ` ) ;
262
262
263
263
// Using console.warn() to avoid messing with find-inactive-tsc which consumes
264
264
// stdout.
You can’t perform that action at this time.
0 commit comments