File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ export class PullRequestLinter {
265
265
} ) ;
266
266
}
267
267
268
- const comments = await this . client . issues . listComments ( ) ;
268
+ const comments = await this . client . issues . listComments ( this . issueParams ) ;
269
269
if ( comments . data . find ( comment => comment . body ?. includes ( "Exemption Request" ) ) ) {
270
270
body += '\n\n✅ A exemption request has been requested. Please wait for a maintainer\'s review.' ;
271
271
}
@@ -739,7 +739,6 @@ function validateTitleLowercase(pr: GitHubPr): TestResult {
739
739
const result = new TestResult ( ) ;
740
740
const start = pr . title . indexOf ( ':' ) ;
741
741
const firstLetter = pr . title . charAt ( start + 2 ) ;
742
- console . log ( firstLetter , firstLetter . toLocaleLowerCase ( ) ) ;
743
742
result . assessFailure (
744
743
firstLetter !== firstLetter . toLocaleLowerCase ( ) ,
745
744
'The first word of the pull request title should not be capitalized. If the title starts with a CDK construct, it should be in backticks "``".' ,
You can’t perform that action at this time.
0 commit comments