We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1dcaa6 commit d19d97cCopy full SHA for d19d97c
tools/@aws-cdk/prlint/lint.ts
@@ -266,7 +266,7 @@ export class PullRequestLinter {
266
}
267
268
const comments = await this.client.issues.listComments(this.issueParams);
269
- if (comments.data.find(comment => comment.body?.includes("Exemption Request"))) {
+ if (comments.data.find(comment => comment.body?.toLowerCase().includes("exemption request"))) {
270
body += '\n\n✅ A exemption request has been requested. Please wait for a maintainer\'s review.';
271
272
await this.client.issues.createComment({
0 commit comments