@@ -75,7 +75,7 @@ class IssueProcessor {
7575 }
7676 for ( const issue of issues . values ( ) ) {
7777 const isPr = ! ! issue . pull_request ;
78- core . info ( `Found issue: issue #${ issue . number } - ${ issue . title } last updated ${ issue . updated_at } (is pr? ${ isPr } )` ) ;
78+ core . info ( `Found issue: issue #${ issue . number } last updated ${ issue . updated_at } (is pr? ${ isPr } )` ) ;
7979 // calculate string based messages for this issue
8080 const staleMessage = isPr
8181 ? this . options . stalePrMessage
@@ -172,7 +172,7 @@ class IssueProcessor {
172172 // find any comments since the date
173173 const comments = yield this . listIssueComments ( issue . number , sinceDate ) ;
174174 const filteredComments = comments . filter ( comment => comment . user . type === 'User' && comment . user . login !== github_1 . context . actor ) ;
175- core . info ( `Comments not made by ${ github_1 . context . actor } or another bot: ${ filteredComments . length } ` ) ;
175+ core . info ( `Comments not made by actor or another bot: ${ filteredComments . length } ` ) ;
176176 // if there are any user comments returned
177177 return filteredComments . length > 0 ;
178178 } ) ;
@@ -222,7 +222,7 @@ class IssueProcessor {
222222 // Mark an issue as stale with a comment and a label
223223 markStale ( issue , staleMessage , staleLabel , skipMessage ) {
224224 return __awaiter ( this , void 0 , void 0 , function * ( ) {
225- core . info ( `Marking issue #${ issue . number } - ${ issue . title } as stale` ) ;
225+ core . info ( `Marking issue #${ issue . number } as stale` ) ;
226226 this . staleIssues . push ( issue ) ;
227227 this . operationsLeft -= 2 ;
228228 // if the issue is being marked stale, the updated date should be changed to right now
@@ -261,7 +261,7 @@ class IssueProcessor {
261261 // Close an issue based on staleness
262262 closeIssue ( issue , closeMessage , closeLabel ) {
263263 return __awaiter ( this , void 0 , void 0 , function * ( ) {
264- core . info ( `Closing issue #${ issue . number } - ${ issue . title } for being stale` ) ;
264+ core . info ( `Closing issue #${ issue . number } for being stale` ) ;
265265 this . closedIssues . push ( issue ) ;
266266 this . operationsLeft -= 1 ;
267267 if ( this . options . debugOnly ) {
@@ -309,7 +309,7 @@ class IssueProcessor {
309309 // Remove a label from an issue
310310 removeLabel ( issue , label ) {
311311 return __awaiter ( this , void 0 , void 0 , function * ( ) {
312- core . info ( `Removing label ${ label } from issue #${ issue . number } - ${ issue . title } ` ) ;
312+ core . info ( `Removing label from issue #${ issue . number } ` ) ;
313313 this . removedLabelIssues . push ( issue ) ;
314314 this . operationsLeft -= 1 ;
315315 if ( this . options . debugOnly ) {
@@ -332,7 +332,7 @@ class IssueProcessor {
332332 ///see https://developer.github.com/v3/activity/events/
333333 getLabelCreationDate ( issue , label ) {
334334 return __awaiter ( this , void 0 , void 0 , function * ( ) {
335- core . info ( `Checking for label ${ label } on issue #${ issue . number } ` ) ;
335+ core . info ( `Checking for label on issue #${ issue . number } ` ) ;
336336 this . operationsLeft -= 1 ;
337337 const options = this . client . issues . listEvents . endpoint . merge ( {
338338 owner : github_1 . context . repo . owner ,
0 commit comments